short
101102103104105106107
/** * Create with a custom buffer resizing strategy. */ public ShortArrayList(int initialCapacity, ArraySizingStrategy resizer) { this(initialCapacity, resizer, new ShortHashFunction()); }
/** * Create with a custom buffer resizing strategy. */ public ShortArrayDeque(int initialCapacity, ArraySizingStrategy resizer) { this(initialCapacity, resizer, new ShortHashFunction()); }