Trait

pl.metastack.metarx.reactive.mutate

Dict

Related Doc: package mutate

Permalink

trait Dict[A, B] extends AnyRef

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Dict
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def clear(): Unit

    Permalink

    Removes all elements

  2. abstract def insert(key: A, value: B): Unit

    Permalink

    Inserts a new key-value tuple.

    Inserts a new key-value tuple. If key already exists, update must be used instead.

  3. abstract def insertAll(map: Map[A, B]): Unit

    Permalink

    Insert all elements from map

  4. abstract def remove(key: A): Unit

    Permalink

    Removes key

  5. abstract def removeAll(keys: Seq[A]): Unit

    Permalink

    Remove all keys from keys

  6. abstract def set(map: Map[A, B]): Unit

    Permalink

    Replace current dictionary with elements from map

  7. abstract def update(key: A, value: B): Unit

    Permalink

    Sets the value of key to value

Concrete Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ++=(map: Map[A, B]): Unit

    Permalink

    See also

    insertAll

  4. def +=(kv: (A, B)): Unit

    Permalink

    See also

    insert

  5. def +=(key: A, value: B): Unit

    Permalink

    See also

    insert

  6. def --=(keys: Seq[A]): Unit

    Permalink

    See also

    removeAll

  7. def -=(key: A): Unit

    Permalink

    See also

    remove

  8. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  20. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped