Om
pair_operation.hpp
Go to the documentation of this file.
1 
26 #ifndef Om_Language_Operation_PairOperation_
27 
28  #define Om_Language_Operation_PairOperation_ \
29  Om::Language::Operation::PairOperation
30 
32  #include "om/language/system.hpp"
33 
34  #define Om_Language_Operation_PairOperation_GetName_() \
35  "pair"
36 
37 namespace Om {
38 
39  namespace Language {
40 
41  namespace Operation {
42 
43  // MARK: - Om::Language::Operation::PairOperation
44 
50  public DefaultIncompleteOperation<PairOperation> {
51 
52  public: // MARK: public (static)
53 
54  static char const * GetName();
55 
56  template <typename ThePairOperation>
57  static void GiveElements(
58  ThePairOperation &,
59  Consumer &
60  );
61 
62  public: // MARK: public (non-static)
63 
65 
66  template <typename TheOperand>
68  Evaluation &,
69  TheOperand &
70  );
71 
72  template <typename TheProducer>
74  Evaluation &,
75  TheProducer &
76  );
77 
78  private: // MARK: private (non-static)
79 
81 
82  };
83 
84  namespace {
85 
86  static System::Definition<PairOperation> const thePairDefinition;
87 
88  }
89 
90  }
91 
92  }
93 
94 }
95 
97 
98 #endif
An Element taker; takes at the back.
Definition: consumer.hpp:42
The current evaluation.
Definition: evaluation.hpp:42
The Expression Program implementation.
Definition: expression.hpp:56
A partial implementation of IncompleteOperation.
The pair operation implementation.
bool TakeOperand(Evaluation &, TheOperand &)
static void GiveElements(ThePairOperation &, Consumer &)
bool TakeQuotedProducer(Evaluation &, TheProducer &)
An inserter of an Operation into the static System instance.
Definition: system.hpp:129
The Om library.
Definition: code_point.hpp:26
Om source file.
Om header file.