Lines Matching refs:Object
3 Invoke a Callable Object
7 …he algorithm or Flow Graph node needed to be a Function Object (see `C++ Standard Function Object …
70 …l_for``, it was required to provide a ``Function Object`` as the algorithm's body. This Function O…
131 struct Object {
138 // Lambda function to read the member object of the input Object
139 auto number_reader = [] (const Object& obj) {
148 // Function node that takes an Object as input and produces an integer
149 function_node<Object, int> func1(g, unlimited, number_reader);
158 func1.try_put(Object{1});
165 …ph required the body to be a Function Object. A lambda function was required to extract the number…
173 struct Object {
186 // Use a member function pointer to the number member of the Object struct as the body
187 function_node<Object, int> func1(g, unlimited, &Object::number);
196 func1.try_put(Object{1});