byte
101102103104105106107
/** * Create with a custom buffer resizing strategy. */ public ByteArrayDeque(int initialCapacity, ArraySizingStrategy resizer) { this(initialCapacity, resizer, new ByteHashFunction()); }
/** * Create with a custom buffer resizing strategy. */ public ByteArrayList(int initialCapacity, ArraySizingStrategy resizer) { this(initialCapacity, resizer, new ByteHashFunction()); }