Interface MutableIntByteMapFactory
- All Known Implementing Classes:
MutableIntByteMapFactoryImpl
public interface MutableIntByteMapFactory
A factory which creates instances of type
MutableIntByteMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableIntByteMapempty()<T> MutableIntByteMapfrom(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntByteMapof()Same asempty().MutableIntByteMapofAll(IntByteMap map)Same aswithAll(IntByteMap).MutableIntByteMapofInitialCapacity(int capacity)Same asempty().MutableIntByteMapwith()Same asempty().MutableIntByteMapwithAll(IntByteMap map)MutableIntByteMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableIntByteMap empty() -
of
MutableIntByteMap of()Same asempty(). -
with
MutableIntByteMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(IntByteMap). -
withAll
-
from
<T> MutableIntByteMap from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-