Keeps elements in an order and allows to put them at arbitrary slots without having to allocate a large array.
Create a new order.
g = Order.new;
g.put(7, 100); // put a value (100) at index 7
g.clear; // empty
Create a new order from given items and indices.
Iterate over a range of the order's items.
Return the current write position.
a = Order.new;
a[0] = \z;
a[0] = \y;
a[5] = \five;
a[4] = \four;
a[0] = \z;
a[5] = \five;
a[4] = \four;
a.indices;
a[9] = 100;
a.indices;