Lines Matching refs:actor
29 an actor. This actor object is passed on to STL's `find_if` function. From
32 the element is passed on as an argument `arg1` to the actor (function
33 object). The actor checks if this is an odd value based on the expression
38 when invoked. Instead, an actor (see [link phoenix.actor Actor])
43 does nothing more than return an actor. A second function call will evaluate
53 /at least/ one of its operands is an actor object
54 (see [link phoenix.actor Actor]).
55 # Unary operators are lazily evaluated if their argument is an actor object.
56 # Operator `->*` is lazily evaluated if the left hand argument is an actor object.
57 # The result of a lazy operator is an actor object that can in turn allow the
64 # Following rule 1, `arg1 + 3` is lazily evaluated since `arg1` is an actor
66 # The result of this `arg1 + 3` expression is an actor object, following rule 4.
69 # By rule 4 again, the result of `arg1 + 3 + 6` is an actor object.
70 # As `arg1 + 3 + 6` is an actor, `-(arg1 + 3 + 6)` is lazily evaluated. Rule 2.
73 actor infects all its immediate neighbors within a group (first level or
76 Note that at least one operand of any operator must be a valid actor
79 transform an operand into a valid actor object (see [link phoenix.modules.core Core]).
112 The left hand side of the member pointer operator must be an actor returning a pointer
116 If the right hand side is a member object pointer, the result is an actor which, when evaluated,
129 If the right hand side is a member function pointer, the result is an actor which, when invoked, ca…