Quote from: "Lutz"
There is a frequent code pattern used where you build lists or queues by alwayspushing to the end using the -1 index to build queues. You are creating a 0 or -1 element position. Then using popwithout index until empty?. If you do not allow pushing on on an empty list at -1, code gets complicated as the first element to push, now is a special case to be treated by code.
This is the FIFO use case with choosing it at
There is the other FIFO use case with choosing it at
Quote from: "Lutz"
Basically we are having ahttps://en.wikipedia.org/wiki/Worse_is_better">https://en.wikipedia.org/wiki/Worse_is_better discussion here ;-)
Thanks for the pointer: this may be ;-)