Element - Þ<
- All Less Than Increasing
Description
Find all numbers less than a certain value in a (potentially infinite) list assumed to be (non-strictly) increasing
Overloads
any-num
-all values of a up to (not including) the first greater than or equal to b
Examples
⟨1|2|2|3|2|1|4|3|2|1⟩ 3 Þ<
=⟨1|2|2⟩
⟨1|1|2|3|3|2|4|5|6|7⟩ 4 Þ<
=⟨1|1|2|3|3|2⟩
1223214321 3 Þ<
=⟨1|2|2⟩