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 MutableByteLongMap
empty()
<T> MutableByteLongMap
from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anMutableByteLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableByteLongMap
of()
Same asempty()
.MutableByteLongMap
ofAll(ByteLongMap map)
Same aswithAll(ByteLongMap)
.MutableByteLongMap
ofInitialCapacity(int capacity)
Same asempty()
.MutableByteLongMap
with()
Same asempty()
.MutableByteLongMap
withAll(ByteLongMap map)
MutableByteLongMap
withInitialCapacity(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 anMutableByteLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.- Since:
- 10.0
-