blob: 9d52c55a7959d8309f4c9ccaae02f5d99a656cd5 [file]
test1: ---
assert(IntPredicate { it < 0 }.accept(a))
| |
| 1
false
---
test2: ---
assert(IntPredicate { it < 0 }.accept(a) == true)
| | |
| | false
| 1
false
---
test3: ---
assert(IntPredicate { it > 0 } plus a)
| |
| -1
false
---