Returns true if the expression for exactly one object in the Collection returns true.
| one(Block condition) | |||
|---|---|---|---|
| Argument | Block | condition | Condition which should return true for exactly one object of the collection. |
| Return value | Boolean | ||
| Formula | Result |
|---|---|
| =List{'abc','bf','cb'}.one(x|x.size=3) | true |
