OCLOperators at
This page was created by Alexandra on 2017-08-13. Last edited by Wikiadmin on 2026-09-12.
at ( index : Integer ) : T[edit source]
Returns the element of self at the *index* position.
Note! 1-based index.
| Expression | Result |
|---|---|
| Sequence{'a', 'b'}->at(1) | a |
It returns the element from the collection at the specified index.
Example:
Department.allInstances->at(1)
Results:
