alo 0.1.0

ALO means At Least One. It could contain any number of item like `Vec` but it does not heap allocation if it contains only one item.
alo-0.1.0 doesn't have any documentation.

ALO

Overview

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.

How to use

let mut alo = ALO::with_item(42);
alo.add(777);