Object::Predicate (Object1, Object2, ...)::Predicate (Object1; Object2; ...)::Predicate Object::(Predicate1, Predicate2, ...) Object::(Predicate1; Predicate2; ...)
Sends a message to an object. The message argument must match a public predicate of the receiver object. We can also send the same message to a set of objects or a set of messages to the same object. The ",
" and ";
" in the list have the usual Prolog meaning.
+receivers::+messages
instantiation_error
permission_error(access, private_predicate, Predicate)
permission_error(access, protected_predicate, Predicate)
existence_error(predicate_declaration, Predicate)
existence_error(object, Object)
| ?- list::member(X, [1, 2, 3]). X = 1 ; X = 2 ; X = 3 yes