| Operations |
| Signature | Constraints | Documentation |
is_bag()
:
Boolean |
post: is_bag=not is_ordered and not is_unique | True if the semantics of this cardinality represent a set, i.e. unordered, unique membership. |
is_list()
:
Boolean |
post: is_list=is_ordered and not is_unique | True if the semantics of this cardinality represent a list, i.e. ordered, non-unique membership. |
is_set()
:
Boolean |
post: is_set=not is_ordered and is_unique | True if the semantics of this cardinality represent a bag, i.e. unordered, non-unique membership. |