of

fun <K : Any, V : Any> of(vararg entries: Pair<K, Loadable<V>>): ImmutableRegisteringMap<K, V>

Return

A new ImmutableRegisteringMap with no elements.

Parameters

K

The key type in the map.

V

The value type in the map.

entries

The pairs that will represent the maps register-able elements.


fun <K : Any, V : Any> of(entries: Iterable<Pair<K, Loadable<V>>>): ImmutableRegisteringMap<K, V>

Return

A new ImmutableRegisteringMap with the given pairs inserted.

Parameters

K

The key type in the map.

V

The value type in the map.

entries

The pairs that will represent the maps register-able elements.