coincides
FEEL built-in function · Range functions
coincides(a, b)
Returns true if two points are equal or two ranges have identical endpoints and closures.
Parameters
| Parameter | Type | Description |
|---|---|---|
| a | point or range | first value |
| b | point or range | second value |
Examples
coincides(5, 5)
true
Try it →
coincides([1..5], [1..5])
true
Try it →
Related functions
Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).