This kind of operation does not make much sense from a Lambda point of
view because Lambda assumes immutable collections. Operations in
Lambda.hx are defined for Iterable<T> types, which have no notion of
removing elements from them or modifying them in any other way.
For arrays you could utilize the splice method and wrap it in some
helper function. It may be worth considering a different data structure
altogether, because something like a linked list would make this
operation trivial (and much more efficient).
Simon