Interface MutableByteIntMapFactory
- All Known Implementing Classes:
MutableByteIntMapFactoryImpl
public interface MutableByteIntMapFactory
A factory which creates instances of type
MutableByteIntMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableByteIntMapempty()<T> MutableByteIntMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableByteIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteIntMapof()Same asempty().MutableByteIntMapofAll(ByteIntMap map)Same aswithAll(ByteIntMap).MutableByteIntMapofInitialCapacity(int capacity)Same asempty().MutableByteIntMapwith()Same asempty().MutableByteIntMapwithAll(ByteIntMap map)MutableByteIntMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableByteIntMap empty() -
of
MutableByteIntMap of()Same asempty(). -
with
MutableByteIntMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(ByteIntMap). -
withAll
-
from
<T> MutableByteIntMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableByteIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-