ALO means "At Least One". ALO is simple data structure which contains at least one items. ALO does not heap allocation until there is only one item.
rust let mut alo = ALO::with_item(42); alo.add(777);