package util
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- class MapK[K[_], V[_]] extends AnyRef
-
class
MutableMapK[K[_], V[_]] extends AnyRef
A map where Keys have type parameters, and values stored for each key have a related type.
A map where Keys have type parameters, and values stored for each key have a related type. I.e. looking up a key of type
K[T]will result in a value of typeV[T]. A simple map will useV = Id, so thatget(K[T])results in a bareT.