Om
evaluate_operation.hpp
Go to the documentation of this file.
1 
26 #ifndef Om_Language_Operation_EvaluateOperation_
27 
28  #define Om_Language_Operation_EvaluateOperation_ \
29  Om::Language::Operation::EvaluateOperation
30 
32  #include "om/language/system.hpp"
33 
34  #define Om_Language_Operation_EvaluateOperation_GetName_() \
35  "evaluate"
36 
37 namespace Om {
38 
39  namespace Language {
40 
41  namespace Operation {
42 
43  // MARK: - Om::Language::Operation::EvaluateOperation
44 
50  public DefaultIncompleteOperation<EvaluateOperation> {
51 
52  public: // MARK: public (static)
53 
54  static char const * GetName();
55 
56  template <typename TheEvaluateOperation>
57  static void GiveElements(
58  TheEvaluateOperation &,
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  };
79 
80  namespace {
81 
82  static System::Definition<EvaluateOperation> const theEvaluateDefinition;
83 
84  }
85 
86  }
87 
88  }
89 
90 }
91 
93 
94 #endif
An Element taker; takes at the back.
Definition: consumer.hpp:42
The current evaluation.
Definition: evaluation.hpp:42
A partial implementation of IncompleteOperation.
The define operation implementation.
static void GiveElements(TheEvaluateOperation &, Consumer &)
bool TakeQuotedProducer(Evaluation &, TheProducer &)
bool TakeOperand(Evaluation &, TheOperand &)
An inserter of an Operation into the static System instance.
Definition: system.hpp:129
Om source file.
The Om library.
Definition: code_point.hpp:26
Om header file.