Interface MutableByteLongMapFactory
- All Known Implementing Classes:
MutableByteLongMapFactoryImpl
public interface MutableByteLongMapFactory
A factory which creates instances of type
MutableByteLongMap.
This file was automatically generated from template file mutablePrimitivePrimitiveMapFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableByteLongMapempty()<T> MutableByteLongMapfrom(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableByteLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteLongMapof()Same asempty().MutableByteLongMapofAll(ByteLongMap map)Same aswithAll(ByteLongMap).MutableByteLongMapofInitialCapacity(int capacity)Same asempty().MutableByteLongMapwith()Same asempty().MutableByteLongMapwithAll(ByteLongMap map)MutableByteLongMapwithInitialCapacity(int capacity)Same asempty().
-
Method Details
-
empty
MutableByteLongMap empty() -
of
MutableByteLongMap of()Same asempty(). -
with
MutableByteLongMap with()Same asempty(). -
ofInitialCapacity
Same asempty(). but takes in an initial capacity -
withInitialCapacity
Same asempty(). but takes in an initial capacity -
ofAll
Same aswithAll(ByteLongMap). -
withAll
-
from
<T> MutableByteLongMap from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableByteLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.- Since:
- 10.0
-