easyflow
easyflow copied to clipboard
Library of abstractions for pure data
Currently, for example, if you get the keys (using sendKey see #40 ) and all your keys are numeric you actually will receive an elusive list of "numeric symbols" (symbols...
``` | 1 2 3 4 5 6 7 8 9 10 ( | [easyflow/left2right 3] | [print] ``` would print ``` 123 456 789 10 ```
Should it have it's own iterator method? Also i can ask the same for the future [2DarrayList] object
In java if you need to iterate forward and backward you could use [ListIterator](https://docs.oracle.com/javase/8/docs/api/java/util/ListIterator.html). I could create [listIterator] which would be just [iterator] plus a previous method. Or i can...
- Currently 0 behaves exactly like 1 - so, when iterating, you have a duplicate element (-1, **0, 1**, 2, 3) ### The problem with L (and the no-gap solution):...