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