Class/Object

emblem

TypeBoundMap

Related Docs: object TypeBoundMap | package emblem

Permalink

class TypeBoundMap[TypeBound, Key[_ <: TypeBound], Val[_ <: TypeBound]] extends BaseTypeBoundMap[TypeBound, Key, Val]

a map where the types for keys and values share a type parameter with the same bounds. the key and value of each key/value pair are constrained to match on that type parameter. for example, we might have some pet stores that only cater to a single kind of pet:

trait Pet
case class Cat(name: String) extends Pet
case class Dog(name: String) extends Pet
class PetStore[P <: Pet]

val catStore1 = new PetStore[Cat]
val catStore2 = new PetStore[Cat]
val dogStore1 = new PetStore[Dog]

we can use a TypeBoundMap to store a list of pets of the appropriate type for every pet store:

var inventories = TypeBoundMap[Pet, PetStore, List]
inventories += (catStore1 -> List(Cat("cat11"), Cat("cat12"), Cat("cat13")))
inventories += (catStore2 -> List(Cat("cat21")))
inventories += (dogStore1 -> List(Dog("dog11"), Dog("dog12")))

now we can look up pet lists by pet store, with everything coming back as the expected type:

val cats1: List[Cat] = inventories(catStore1)
cats1.size should be (3)
val cats2: List[Cat] = inventories(catStore2)
cats2.size should be (1)
val dogs1: List[Dog] = inventories(dogStore1)
dogs1.size should be (2)

val cat: Cat = inventories(catStore1).head
cat should equal (Cat("cat11"))
val dog: Dog = inventories(dogStore1).head
dog should equal (Dog("dog11"))

note that the API does not provide ++ or similar methods to add multiple key/value pairs at a time, as each pair needs to be type-checked separately.

(the code presented here is in TypeBoundMapSpec.scala, up at the top)

TypeBound

the upper bound on the type parameters passed to the Key and Val types

Key

the parameterized type of the keys in the map

Val

the parameterized type of the values in the map

Source
TypeBoundMap.scala
See also

TypeBoundMapSpec.scala and BaseTypeBoundMapSpec.scala for many more examples

Linear Supertypes
BaseTypeBoundMap[TypeBound, Key, Val], AnyRef, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. TypeBoundMap
  2. BaseTypeBoundMap
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +[TypeParam <: TypeBound, ValTypeParam <: TypeBound](pair: (Key[TypeParam], Val[ValTypeParam]))(implicit valConforms: <:<[Val[ValTypeParam], Val[TypeParam]]): TypeBoundMap[TypeBound, Key, Val]

    Permalink

    adds a key/value pair to this map, returning a new map.

    adds a key/value pair to this map, returning a new map. both the key and the value are bound by the same type param.

    TypeParam

    the type param bounding both the key and the value

    ValTypeParam

    the type param for the value type. this can be any type, provided that Val[ValTypeParam] <: Val[KeyTypeParam])

    pair

    the key/value pair

    valConforms

    a constraint ensuring that Val[ValTypeParam] <: Val[TypeParam])

  4. def ++(that: TypeBoundMap[TypeBound, Key, Val]): TypeBoundMap[TypeBound, Key, Val]

    Permalink

    takes the union of two type bound maps with the same type params

    takes the union of two type bound maps with the same type params

    that

    the type bound map to union with this type bound map

    returns

    a new type bound map with the bindings of this map and that map

  5. def ->[B](y: B): (TypeBoundMap[TypeBound, Key, Val], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from TypeBoundMap[TypeBound, Key, Val] to ArrowAssoc[TypeBoundMap[TypeBound, Key, Val]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  7. def apply[TypeParam <: TypeBound](key: Key[TypeParam]): Val[TypeParam]

    Permalink

    retrieves the value which is associated with the given key, both bound by the same type param.

    retrieves the value which is associated with the given key, both bound by the same type param.

    throws java.util.NoSuchElementException when no value is mapped to the supplied key

    TypeParam

    the type param binding both the key and the value

  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def contains(key: Key[_ <: TypeBound]): Boolean

    Permalink

    tests whether this map contains a binding for a key.

    tests whether this map contains a binding for a key.

    key

    the key

    returns

    true if there is a binding for key in this map, false otherwise.

    Definition Classes
    BaseTypeBoundMap
  11. def ensuring(cond: (TypeBoundMap[TypeBound, Key, Val]) ⇒ Boolean, msg: ⇒ Any): TypeBoundMap[TypeBound, Key, Val]

    Permalink
    Implicit information
    This member is added by an implicit conversion from TypeBoundMap[TypeBound, Key, Val] to Ensuring[TypeBoundMap[TypeBound, Key, Val]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (TypeBoundMap[TypeBound, Key, Val]) ⇒ Boolean): TypeBoundMap[TypeBound, Key, Val]

    Permalink
    Implicit information
    This member is added by an implicit conversion from TypeBoundMap[TypeBound, Key, Val] to Ensuring[TypeBoundMap[TypeBound, Key, Val]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): TypeBoundMap[TypeBound, Key, Val]

    Permalink
    Implicit information
    This member is added by an implicit conversion from TypeBoundMap[TypeBound, Key, Val] to Ensuring[TypeBoundMap[TypeBound, Key, Val]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): TypeBoundMap[TypeBound, Key, Val]

    Permalink
    Implicit information
    This member is added by an implicit conversion from TypeBoundMap[TypeBound, Key, Val] to Ensuring[TypeBoundMap[TypeBound, Key, Val]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. def equals(that: Any): Boolean

    Permalink

    compares two maps structurally; i.e., checks if all mappings contained in this map are also contained in the other map, and vice versa.

    compares two maps structurally; i.e., checks if all mappings contained in this map are also contained in the other map, and vice versa.

    that

    the other type key map

    returns

    true if both maps contain exactly the same mappings, false otherwise.

    Definition Classes
    TypeBoundMap → AnyRef → Any
  17. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def foreach(f: (TypeBoundPair[TypeBound, Key, Val, _ <: TypeBound]) ⇒ Unit): Unit

    Permalink

    [use case] applies a function f to all elements of this type bound map.

    [use case]

    applies a function f to all elements of this type bound map.

    f

    the function that is applied for its side-effect to every element. the result of function f is discarded

    Definition Classes
    BaseTypeBoundMap
    Full Signature

    def foreach[U](f: (TypeBoundPair[TypeBound, Key, Val, _ <: TypeBound]) ⇒ U): Unit

  19. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from TypeBoundMap[TypeBound, Key, Val] to StringFormat[TypeBoundMap[TypeBound, Key, Val]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  20. def get[TypeParam <: TypeBound](key: Key[TypeParam]): Option[Val[TypeParam]]

    Permalink

    optionally returns the value associated with the given key

    optionally returns the value associated with the given key

    TypeParam

    the type param bounding both the key and the value

    returns

    an option value containing the value associated with type key in this map, or None if none exists.

  21. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  22. def getOrElse[TypeParam <: TypeBound](key: Key[TypeParam], default: ⇒ Val[TypeParam]): Val[TypeParam]

    Permalink

    returns the value associated with a key, or a default value if the key is not contained in the map.

    returns the value associated with a key, or a default value if the key is not contained in the map.

    TypeParam

    the type param bounding both the key and the value

    default

    a computation that yields a default value in case no binding for the key is found in the map

    returns

    the value associated with key if it exists, otherwise the result of the default computation.

  23. def hashCode(): Int

    Permalink
    Definition Classes
    TypeBoundMap → BaseTypeBoundMap → AnyRef → Any
  24. def isEmpty: Boolean

    Permalink

    tests whether the map is empty.

    tests whether the map is empty.

    returns

    true if the map does not contain any key/value binding, false otherwise.

    Definition Classes
    BaseTypeBoundMap
  25. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  26. def iterator: Iterator[TypeBoundPair[TypeBound, Key, Val, _ <: TypeBound]]

    Permalink

    creates a new iterator over all key/value pairs of this map

    creates a new iterator over all key/value pairs of this map

    returns

    the new iterator

    Definition Classes
    BaseTypeBoundMap
  27. def keys: Iterable[Key[_ <: TypeBound]]

    Permalink

    collects all keys of this map in an iterable collection.

    collects all keys of this map in an iterable collection.

    returns

    the keys of this map as an iterable.

    Definition Classes
    BaseTypeBoundMap
  28. def mapValues[Val2[_ <: TypeBound]](f: TypeBoundFunction[TypeBound, Val, Val2]): TypeBoundMap[TypeBound, Key, Val2]

    Permalink

    transforms this map by applying a function to every retrieved value.

    transforms this map by applying a function to every retrieved value.

    f

    the function used to transform values of this map.

    returns

    a map which maps every key of this map to f(this(key)).

  29. def mapValuesUnderlying[TypeBound2 >: TypeBound, Val2[_ <: TypeBound2]](f: WideningTypeBoundFunction[TypeBound, TypeBound2, Val, Val2]): Map[Any, Any]

    Permalink
    Attributes
    protected
    Definition Classes
    BaseTypeBoundMap
  30. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  31. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  32. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  33. def size: Int

    Permalink

    the number of key/value bindings in this map

    the number of key/value bindings in this map

    Definition Classes
    BaseTypeBoundMap
  34. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  35. def toString(): String

    Permalink

    a string representation of a TypeBoundMap

    a string representation of a TypeBoundMap

    Definition Classes
    TypeBoundMap → AnyRef → Any
  36. val underlying: Map[Any, Any]

    Permalink
    Attributes
    protected
    Definition Classes
    BaseTypeBoundMap
  37. def values: Iterable[Val[_ <: TypeBound]]

    Permalink

    collects all values of this map in an iterable collection.

    collects all values of this map in an iterable collection.

    returns

    the values of this map as an iterable.

    Definition Classes
    BaseTypeBoundMap
  38. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. def [B](y: B): (TypeBoundMap[TypeBound, Key, Val], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from TypeBoundMap[TypeBound, Key, Val] to ArrowAssoc[TypeBoundMap[TypeBound, Key, Val]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from TypeBoundMap[TypeBound, Key, Val] to any2stringadd[TypeBoundMap[TypeBound, Key, Val]] performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (typeBoundMap: any2stringadd[TypeBoundMap[TypeBound, Key, Val]]).+(other)
    Definition Classes
    any2stringadd

Inherited from BaseTypeBoundMap[TypeBound, Key, Val]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from TypeBoundMap[TypeBound, Key, Val] to any2stringadd[TypeBoundMap[TypeBound, Key, Val]]

Inherited by implicit conversion StringFormat from TypeBoundMap[TypeBound, Key, Val] to StringFormat[TypeBoundMap[TypeBound, Key, Val]]

Inherited by implicit conversion Ensuring from TypeBoundMap[TypeBound, Key, Val] to Ensuring[TypeBoundMap[TypeBound, Key, Val]]

Inherited by implicit conversion ArrowAssoc from TypeBoundMap[TypeBound, Key, Val] to ArrowAssoc[TypeBoundMap[TypeBound, Key, Val]]

Ungrouped