- add(E) - Method in class org.alicep.collect.ArraySet
-
- ArrayMap<K,V> - Class in org.alicep.collect
-
Hash table and array implementation of the Map interface,
with predictable iteration order.
- ArrayMap() - Constructor for class org.alicep.collect.ArrayMap
-
Constructs an empty map with an initial capacity of ten.
- ArrayMap(Map<? extends K, ? extends V>) - Constructor for class org.alicep.collect.ArrayMap
-
Constructs a map with the same mappings as the specified map.
- ArraySet<E> - Class in org.alicep.collect
-
Hash table and array implementation of the Set interface,
with predictable iteration order.
- ArraySet() - Constructor for class org.alicep.collect.ArraySet
-
Constructs an empty set with an initial capacity of ten.
- ArraySet(Collection<? extends E>) - Constructor for class org.alicep.collect.ArraySet
-
Constructs a set containing the elements of the specified
collection, in the order they are returned by the collection's
iterator.