org.scalatra

FlashMap

class FlashMap extends MutableMapWithIndifferentAccess[Any]

A FlashMap is the data structured used by FlashMapSupportto allow passing temporary values between sequential actions.

FlashMap behaves like MapWithIndifferentAccess. By default, anything placed in the map is available to the current request and next request and then discarded.

linear super types: MutableMapWithIndifferentAccess[Any], Map[String, Any], MapLike[String, Any, Map[String, Any]], Cloneable[Map[String, Any]], Shrinkable[String], Builder[(String, Any), Map[String, Any]], Growable[(String, Any)], Iterable[(String, Any)], Traversable[(String, Any)], Mutable, MapWithIndifferentAccess[Any], Map[String, Any], MapLike[String, Any, Map[String, Any]], Subtractable[String, Map[String, Any]], PartialFunction[String, Any], (String) ⇒ Any, Iterable[(String, Any)], IterableLike[(String, Any), Map[String, Any]], Equals, Traversable[(String, Any)], GenericTraversableTemplate[(String, Any), Iterable], TraversableLike[(String, Any), Map[String, Any]], TraversableOnce[(String, Any)], FilterMonadic[(String, Any), Map[String, Any]], HasNewBuilder[(String, Any), Map[String, Any]], AnyRef, Any
    see also:
  1. FlashMapSupport

Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. FlashMap
  2. MutableMapWithIndifferentAccess
  3. Map
  4. MapLike
  5. Cloneable
  6. Shrinkable
  7. Builder
  8. Growable
  9. Iterable
  10. Traversable
  11. Mutable
  12. MapWithIndifferentAccess
  13. Map
  14. MapLike
  15. Subtractable
  16. PartialFunction
  17. Function1
  18. Iterable
  19. IterableLike
  20. Equals
  21. Traversable
  22. GenericTraversableTemplate
  23. TraversableLike
  24. TraversableOnce
  25. FilterMonadic
  26. HasNewBuilder
  27. AnyRef
  28. Any
Visibility
  1. Public
  2. All
Impl.
  1. Concrete
  2. Abstract

Instance constructors

  1. new FlashMap ()

Type Members

  1. type Self = Map[String, Any]

    attributes: protected
    definition classes: TraversableLike

Value Members

  1. def != (arg0: AnyRef) : Boolean

    attributes: final
    definition classes: AnyRef
  2. def != (arg0: Any) : Boolean

    o != arg0 is the same as !(o == (arg0)).

    o != arg0 is the same as !(o == (arg0)).

    arg0

    the object to compare against this object for dis-equality.

    returns

    false if the receiver object is equivalent to the argument; true otherwise.

    attributes: final
    definition classes: Any
  3. def ## () : Int

    attributes: final
    definition classes: AnyRef → Any
  4. def $asInstanceOf [T0] () : T0

    attributes: final
    definition classes: AnyRef
  5. def $isInstanceOf [T0] () : Boolean

    attributes: final
    definition classes: AnyRef
  6. def + [B1 >: B] (elem1: (String, B1), elem2: (String, B1), elems: (String, B1)*) : Map[String, B1]

    definition classes: MapLike → MapLike
  7. def + [B1 >: B] (kv: (String, B1)) : Map[String, B1]

    definition classes: MapLike → MapLike
  8. def ++ [B1 >: B] (xs: TraversableOnce[(String, B1)]) : Map[String, B1]

    definition classes: MapLike → MapLike
  9. def ++ [B >: A, That] (that: TraversableOnce[B])(implicit bf: CanBuildFrom[Map[String, Any], B, That]) : That

    definition classes: TraversableLike
  10. def ++= (xs: TraversableOnce[(String, Any)]) : FlashMap.this.type

    definition classes: Growable
  11. def += (kv: (String, Any)) : FlashMap.this.type

    definition classes: FlashMap → MapLike → Builder → Growable
  12. def += (elem1: (String, Any), elem2: (String, Any), elems: (String, Any)*) : FlashMap.this.type

    definition classes: Growable
  13. def - (elem1: String, elem2: String, elems: String*) : Map[String, Any]

    definition classes: MapLike → Subtractable
  14. def - (key: String) : Map[String, Any]

    definition classes: MapLike → MapLike → Subtractable
  15. def -- (xs: TraversableOnce[String]) : Map[String, Any]

    definition classes: MapLike → Subtractable
  16. def --= (xs: TraversableOnce[String]) : FlashMap.this.type

    definition classes: Shrinkable
  17. def -= (key: String) : FlashMap.this.type

    definition classes: FlashMap → MapLike → Shrinkable
  18. def -= (elem1: String, elem2: String, elems: String*) : FlashMap.this.type

    definition classes: Shrinkable
  19. def /: [B] (z: B)(op: (B, (String, Any)) ⇒ B) : B

    definition classes: TraversableOnce
  20. def :\ [B] (z: B)(op: ((String, Any), B) ⇒ B) : B

    definition classes: TraversableOnce
  21. def == (arg0: AnyRef) : Boolean

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    attributes: final
    definition classes: AnyRef
  22. def == (arg0: Any) : Boolean

    o == arg0 is the same as o.equals(arg0).

    o == arg0 is the same as o.equals(arg0).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    attributes: final
    definition classes: Any
  23. def addString (b: StringBuilder, start: String, sep: String, end: String) : StringBuilder

    definition classes: MapLike → TraversableOnce
  24. def addString (b: StringBuilder) : StringBuilder

    definition classes: TraversableOnce
  25. def addString (b: StringBuilder, sep: String) : StringBuilder

    definition classes: TraversableOnce
  26. def andThen [C] (k: (Any) ⇒ C) : PartialFunction[String, C]

    definition classes: PartialFunction → Function1
  27. def apply (key: Symbol) : Any

    definition classes: MapWithIndifferentAccess
  28. def apply (key: String) : Any

    definition classes: MapLike → Function1
  29. def asInstanceOf [T0] : T0

    This method is used to cast the receiver object to be of type T0.

    This method is used to cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expressionList(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested typed.

    returns

    the receiver object.

    attributes: final
    definition classes: Any
  30. def canEqual (that: Any) : Boolean

    definition classes: IterableLike → Equals
  31. def clear () : Unit

    definition classes: MapLike → Builder → Growable
  32. def clone () : Map[String, Any]

    This method creates and returns a copy of the receiver object.

    This method creates and returns a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    definition classes: MapLike → Cloneable → AnyRef
  33. def collect [B, That] (pf: PartialFunction[(String, Any), B])(implicit bf: CanBuildFrom[Map[String, Any], B, That]) : That

    definition classes: TraversableLike
  34. def companion : GenericCompanion[Iterable]

    definition classes: Iterable → Iterable → Traversable → Traversable → GenericTraversableTemplate
  35. def compose [A] (g: (A) ⇒ String) : (A) ⇒ Any

    definition classes: Function1
  36. def contains (key: String) : Boolean

    definition classes: MapLike
  37. def copyToArray [B >: A] (xs: Array[B], start: Int, len: Int) : Unit

    definition classes: IterableLike → TraversableLike → TraversableOnce
  38. def copyToArray [B >: A] (xs: Array[B]) : Unit

    definition classes: TraversableOnce
  39. def copyToArray [B >: A] (xs: Array[B], start: Int) : Unit

    definition classes: TraversableOnce
  40. def copyToBuffer [B >: A] (dest: Buffer[B]) : Unit

    definition classes: TraversableOnce
  41. def count (p: ((String, Any)) ⇒ Boolean) : Int

    definition classes: TraversableOnce
  42. def default (key: String) : Any

    definition classes: MapLike
  43. def drop (n: Int) : Map[String, Any]

    definition classes: TraversableLike
  44. def dropRight (n: Int) : Map[String, Any]

    definition classes: IterableLike
  45. def dropWhile (p: ((String, Any)) ⇒ Boolean) : Map[String, Any]

    definition classes: TraversableLike
  46. def elements : Iterator[(String, Any)]

    definition classes: IterableLike
      deprecated:
    1. use iterator' instead

  47. def empty : Map[String, Any]

    definition classes: Map → Map → MapLike
  48. def eq (arg0: AnyRef) : Boolean

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

    The eq method implements an [http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation] on non-null instances of AnyRef: * It is reflexive: for any non-null instance x of type AnyRef, x.eq(x) returns true. * It is symmetric: for any non-null instances x and y of type AnyRef, x.eq(y) returns true if and only if y.eq(x) returns true. * It is transitive: for any non-null instances x, y, and z of type AnyRef if x.eq(y) returns true and y.eq(z) returns true, then x.eq(z) returns true.

    Additionally, the eq method has three other properties. * It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false. * For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false. * null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    arg0

    the object to compare against this object for reference equality.

    returns

    true if the argument is a reference to the receiver object; false otherwise.

    attributes: final
    definition classes: AnyRef
  49. def equals (that: Any) : Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    The default implementations of this method is an [http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation]: * It is reflexive: for any instance x of type Any, x.equals(x) should return true. * It is symmetric: for any instances x and y of type Any, x.equals(y) should return true if and only if y.equals(x) returns true. * It is transitive: for any instances x, y, and z of type AnyRef if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.

    If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is often necessary to override hashCode to ensure that objects that are "equal" (o1.equals(o2) returns true) hash to the same scala.Int (o1.hashCode.equals(o2.hashCode)).

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    definition classes: MapLike → Equals → AnyRef → Any
  50. def exists (p: ((String, Any)) ⇒ Boolean) : Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  51. def filter (p: ((String, Any)) ⇒ Boolean) : Map[String, Any]

    definition classes: TraversableLike
  52. def filterKeys (p: (String) ⇒ Boolean) : Map[String, Any]

    definition classes: MapLike
  53. def filterNot (p: ((String, Any)) ⇒ Boolean) : Map[String, Any]

    definition classes: MapLike → TraversableLike
  54. def finalize () : Unit

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object.

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object.

    The details of when and if the finalize method are invoked, as well as the interaction between finalizeand non-local returns and exceptions, are all platform dependent.

    attributes: protected[lang]
    definition classes: AnyRef
  55. def find (p: ((String, Any)) ⇒ Boolean) : Option[(String, Any)]

    definition classes: IterableLike → TraversableLike → TraversableOnce
  56. def first : (String, Any)

    definition classes: IterableLike
      deprecated:
    1. use head' instead

  57. def firstOption : Option[(String, Any)]

    definition classes: IterableLike
      deprecated:
    1. use headOption' instead

  58. def flag () : Unit

    Flags all current keys so the entire map is cleared on the next sweep.

    Flags all current keys so the entire map is cleared on the next sweep.

  59. def flatMap [B, That] (f: ((String, Any)) ⇒ Traversable[B])(implicit bf: CanBuildFrom[Map[String, Any], B, That]) : That

    definition classes: TraversableLike → FilterMonadic
  60. def flatten [B] (implicit asTraversable: ((String, Any)) ⇒ Traversable[B]) : Iterable[B]

    definition classes: GenericTraversableTemplate
  61. def foldLeft [B] (z: B)(op: (B, (String, Any)) ⇒ B) : B

    definition classes: TraversableOnce
  62. def foldRight [B] (z: B)(op: ((String, Any), B) ⇒ B) : B

    definition classes: IterableLike → TraversableOnce
  63. def forall (p: ((String, Any)) ⇒ Boolean) : Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  64. def foreach [U] (f: ((String, Any)) ⇒ U) : Unit

    definition classes: IterableLike → TraversableLike → TraversableOnce → FilterMonadic
  65. def genericBuilder [B] : Builder[B, Iterable[B]]

    definition classes: GenericTraversableTemplate
  66. def get (key: String) : Option[Any]

    Returns the value associated with a key and flags it to be swept.

    Returns the value associated with a key and flags it to be swept.

    definition classes: FlashMap → MapLike
  67. def get (key: Symbol) : Option[Any]

    definition classes: MapWithIndifferentAccess
  68. def getClass () : java.lang.Class[_]

    Returns a representation that corresponds to the dynamic class of the receiver object.

    Returns a representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    attributes: final
    definition classes: AnyRef
  69. def getOrElse [B1 >: B] (key: Symbol, default: ⇒ B1) : B1

    definition classes: MapWithIndifferentAccess
  70. def getOrElse [B1 >: B] (key: String, default: ⇒ B1) : B1

    definition classes: MapLike
  71. def getOrElseUpdate (key: String, op: ⇒ Any) : Any

    definition classes: MapLike
  72. def groupBy [K] (f: ((String, Any)) ⇒ K) : Map[K, Map[String, Any]]

    definition classes: TraversableLike
  73. def grouped (size: Int) : Iterator[Map[String, Any]]

    definition classes: IterableLike
  74. def hasDefiniteSize : Boolean

    definition classes: TraversableLike → TraversableOnce
  75. def hashCode () : Int

    Returns a hash code value for the object.

    Returns a hash code value for the object.

    The default hashing algorithm is platform dependent.

    Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)) yet not be equal (o1.equals(o2) returns false). A degenerate implementation could always return 0. However, it is required that if two objects are equal (o1.equals(o2) returns true) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals method.

    returns

    the hash code value for the object.

    definition classes: MapLike → AnyRef → Any
  76. def head : (String, Any)

    definition classes: IterableLike → TraversableLike
  77. def headOption : Option[(String, Any)]

    definition classes: TraversableLike
  78. def init : Map[String, Any]

    definition classes: TraversableLike
  79. def isDefinedAt (key: String) : Boolean

    definition classes: MapLike → PartialFunction
  80. def isEmpty : Boolean

    definition classes: MapLike → IterableLike → TraversableLike → TraversableOnce
  81. def isInstanceOf [T0] : Boolean

    This method is used to test whether the dynamic type of the receiver object is T0.

    This method is used to test whether the dynamic type of the receiver object is T0.

    Note that the test result of the test is modulo Scala's erasure semantics. Therefore the expression1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested typed.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    attributes: final
    definition classes: Any
  82. def isTraversableAgain : Boolean

    attributes: final
    definition classes: TraversableLike → TraversableOnce
  83. def iterator : Iterator[(String, Any)]

    definition classes: FlashMap → MapLike → IterableLike
  84. def keep (key: String) : Unit

    Clears the flag for the specified key so its entry is not removed on the next sweep.

    Clears the flag for the specified key so its entry is not removed on the next sweep.

  85. def keep () : Unit

    Clears all flags so no entries are removed on the next sweep.

    Clears all flags so no entries are removed on the next sweep.

  86. def keySet : Set[String]

    definition classes: MapLike
  87. def keys : Iterable[String]

    definition classes: MapLike
  88. def keysIterator : Iterator[String]

    definition classes: MapLike
  89. def last : (String, Any)

    definition classes: TraversableLike
  90. def lastOption : Option[(String, Any)]

    definition classes: TraversableLike
  91. def lift : (String) ⇒ Option[Any]

    definition classes: PartialFunction
  92. def map [B, That] (f: ((String, Any)) ⇒ B)(implicit bf: CanBuildFrom[Map[String, Any], B, That]) : That

    definition classes: TraversableLike → FilterMonadic
  93. def mapElements [C] (f: (Any) ⇒ C) : Map[String, C]

    definition classes: MapLike
      deprecated:
    1. use mapValues' instead

  94. def mapResult [NewTo] (f: (Map[String, Any]) ⇒ NewTo) : Builder[(String, Any), NewTo]

    definition classes: Builder
  95. def mapValues [C] (f: (Any) ⇒ C) : Map[String, C]

    definition classes: MapLike
  96. def max [B >: A] (implicit cmp: Ordering[B]) : (String, Any)

    definition classes: TraversableOnce
  97. def min [B >: A] (implicit cmp: Ordering[B]) : (String, Any)

    definition classes: TraversableOnce
  98. def mkString : String

    definition classes: TraversableOnce
  99. def mkString (sep: String) : String

    definition classes: TraversableOnce
  100. def mkString (start: String, sep: String, end: String) : String

    definition classes: TraversableOnce
  101. def ne (arg0: AnyRef) : Boolean

    o.ne(arg0) is the same as !(o.eq(arg0)).

    o.ne(arg0) is the same as !(o.eq(arg0)).

    arg0

    the object to compare against this object for reference dis-equality.

    returns

    false if the argument is not a reference to the receiver object; true otherwise.

    attributes: final
    definition classes: AnyRef
  102. def newBuilder : Builder[(String, Any), Map[String, Any]]

    attributes: protected[this]
    definition classes: MapLike → MapLike → TraversableLike → HasNewBuilder
  103. def nonEmpty : Boolean

    definition classes: TraversableOnce
  104. def notify () : Unit

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    attributes: final
    definition classes: AnyRef
  105. def notifyAll () : Unit

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    attributes: final
    definition classes: AnyRef
  106. object now extends AnyRef

    Sets a value for the current request only.

  107. def orElse [A1 <: A, B1 >: B] (that: PartialFunction[A1, B1]) : PartialFunction[A1, B1]

    definition classes: PartialFunction
  108. def partition (p: ((String, Any)) ⇒ Boolean) : (Map[String, Any], Map[String, Any])

    definition classes: TraversableLike
  109. def product [B >: A] (implicit num: Numeric[B]) : B

    definition classes: TraversableOnce
  110. def projection : IterableView[(String, Any), Map[String, Any]]

    definition classes: IterableLike
      deprecated:
    1. use view' instead

  111. def put (key: String, value: Any) : Option[Any]

    definition classes: MapLike
  112. def reduceLeft [B >: A] (op: (B, (String, Any)) ⇒ B) : B

    definition classes: TraversableOnce
  113. def reduceLeftOption [B >: A] (op: (B, (String, Any)) ⇒ B) : Option[B]

    definition classes: TraversableOnce
  114. def reduceRight [B >: A] (op: ((String, Any), B) ⇒ B) : B

    definition classes: IterableLike → TraversableOnce
  115. def reduceRightOption [B >: A] (op: ((String, Any), B) ⇒ B) : Option[B]

    definition classes: TraversableOnce
  116. def remove (key: String) : Option[Any]

    definition classes: MapLike
  117. def removeKey (key: String) : Option[Any]

    definition classes: MapLike
      deprecated:
    1. Use remove' instead

  118. def repr : Map[String, Any]

    definition classes: TraversableLike
  119. def result () : Map[String, Any]

    definition classes: MapLike → Builder
  120. def retain (p: (String, Any) ⇒ Boolean) : FlashMap.this.type

    definition classes: MapLike
  121. def reversed : List[(String, Any)]

    attributes: protected[this]
    definition classes: TraversableOnce
  122. def sameElements [B >: A] (that: Iterable[B]) : Boolean

    definition classes: IterableLike
  123. def scanLeft [B, That] (z: B)(op: (B, (String, Any)) ⇒ B)(implicit bf: CanBuildFrom[Map[String, Any], B, That]) : That

    definition classes: TraversableLike
  124. def scanRight [B, That] (z: B)(op: ((String, Any), B) ⇒ B)(implicit bf: CanBuildFrom[Map[String, Any], B, That]) : That

    definition classes: TraversableLike
  125. def size : Int

    definition classes: TraversableOnce
  126. def sizeHint (coll: scala.collection.TraversableLike[_, _], delta: Int) : Unit

    definition classes: Builder
  127. def sizeHint (size: Int) : Unit

    definition classes: Builder
  128. def sizeHintBounded (size: Int, boundingColl: scala.collection.TraversableLike[_, _]) : Unit

    definition classes: Builder
  129. def slice (from: Int, until: Int) : Map[String, Any]

    definition classes: IterableLike → TraversableLike
  130. def sliding [B >: A] (size: Int, step: Int) : Iterator[Map[String, Any]]

    definition classes: IterableLike
  131. def sliding [B >: A] (size: Int) : Iterator[Map[String, Any]]

    definition classes: IterableLike
  132. def span (p: ((String, Any)) ⇒ Boolean) : (Map[String, Any], Map[String, Any])

    definition classes: TraversableLike
  133. def splitAt (n: Int) : (Map[String, Any], Map[String, Any])

    definition classes: TraversableLike
  134. def stringPrefix : String

    definition classes: MapLike → TraversableLike
  135. def sum [B >: A] (implicit num: Numeric[B]) : B

    definition classes: TraversableOnce
  136. def sweep () : Unit

    Removes all flagged entries.

    Removes all flagged entries.

  137. def synchronized [T0] (arg0: T0) : T0

    attributes: final
    definition classes: AnyRef
  138. def tail : Map[String, Any]

    definition classes: TraversableLike
  139. def take (n: Int) : Map[String, Any]

    definition classes: IterableLike → TraversableLike
  140. def takeRight (n: Int) : Map[String, Any]

    definition classes: IterableLike
  141. def takeWhile (p: ((String, Any)) ⇒ Boolean) : Map[String, Any]

    definition classes: IterableLike → TraversableLike
  142. def thisCollection : Iterable[(String, Any)]

    attributes: protected[this]
    definition classes: IterableLike → TraversableLike
  143. def toArray [B >: A] (implicit arg0: ClassManifest[B]) : Array[B]

    definition classes: TraversableOnce
  144. def toBuffer [B >: A] : Buffer[B]

    definition classes: TraversableOnce
  145. def toCollection (repr: Map[String, Any]) : Iterable[(String, Any)]

    attributes: protected[this]
    definition classes: IterableLike → TraversableLike
  146. def toIndexedSeq [B >: A] : IndexedSeq[B]

    definition classes: TraversableOnce
  147. def toIterable : Iterable[(String, Any)]

    definition classes: IterableLike → TraversableOnce
  148. def toIterator : Iterator[(String, Any)]

    definition classes: TraversableLike → TraversableOnce
  149. def toList : List[(String, Any)]

    definition classes: TraversableOnce
  150. def toMap [T, U] (implicit ev: <:<[(String, Any), (T, U)]) : Map[T, U]

    definition classes: TraversableOnce
  151. def toSeq : Seq[(String, Any)]

    definition classes: IterableLike → TraversableOnce
  152. def toSet [B >: A] : Set[B]

    definition classes: TraversableOnce
  153. def toStream : Stream[(String, Any)]

    definition classes: IterableLike → TraversableLike → TraversableOnce
  154. def toString () : String

    Returns a string representation of the object.

    Returns a string representation of the object.

    The default representation is platform dependent.

    returns

    a string representation of the object.

    definition classes: MapLike → TraversableLike → Function1 → AnyRef → Any
  155. def toTraversable : Traversable[(String, Any)]

    definition classes: TraversableLike → TraversableOnce
  156. def transform (f: (String, Any) ⇒ Any) : FlashMap.this.type

    definition classes: MapLike
  157. def transpose [B] (implicit asTraversable: ((String, Any)) ⇒ Traversable[B]) : Iterable[Iterable[B]]

    definition classes: GenericTraversableTemplate
  158. def unzip [A1, A2] (implicit asPair: ((String, Any)) ⇒ (A1, A2)) : (Iterable[A1], Iterable[A2])

    definition classes: GenericTraversableTemplate
  159. def update (key: Symbol, value: Any) : Unit

    definition classes: MutableMapWithIndifferentAccess
  160. def update (key: String, value: Any) : Unit

    definition classes: MapLike
  161. def updated [B1 >: B] (key: String, value: B1) : Map[String, B1]

    definition classes: MapLike → MapLike
  162. def values : Iterable[Any]

    definition classes: MapLike
  163. def valuesIterator : Iterator[Any]

    definition classes: MapLike
  164. def view (from: Int, until: Int) : IterableView[(String, Any), Map[String, Any]]

    definition classes: IterableLike → TraversableLike
  165. def view : IterableView[(String, Any), Map[String, Any]]

    definition classes: IterableLike → TraversableLike
  166. def wait () : Unit

    attributes: final
    definition classes: AnyRef
  167. def wait (arg0: Long, arg1: Int) : Unit

    attributes: final
    definition classes: AnyRef
  168. def wait (arg0: Long) : Unit

    attributes: final
    definition classes: AnyRef
  169. def withFilter (p: ((String, Any)) ⇒ Boolean) : FilterMonadic[(String, Any), Map[String, Any]]

    definition classes: TraversableLike → FilterMonadic
  170. def zip [A1 >: A, B, That] (that: Iterable[B])(implicit bf: CanBuildFrom[Map[String, Any], (A1, B), That]) : That

    definition classes: IterableLike
  171. def zipAll [B, A1 >: A, That] (that: Iterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Map[String, Any], (A1, B), That]) : That

    definition classes: IterableLike
  172. def zipWithIndex [A1 >: A, That] (implicit bf: CanBuildFrom[Map[String, Any], (A1, Int), That]) : That

    definition classes: IterableLike

Inherited from MutableMapWithIndifferentAccess[Any]

Inherited from Map[String, Any]

Inherited from MapLike[String, Any, Map[String, Any]]

Inherited from Cloneable[Map[String, Any]]

Inherited from Shrinkable[String]

Inherited from Builder[(String, Any), Map[String, Any]]

Inherited from Growable[(String, Any)]

Inherited from Iterable[(String, Any)]

Inherited from Traversable[(String, Any)]

Inherited from Mutable

Inherited from MapWithIndifferentAccess[Any]

Inherited from Map[String, Any]

Inherited from MapLike[String, Any, Map[String, Any]]

Inherited from Subtractable[String, Map[String, Any]]

Inherited from PartialFunction[String, Any]

Inherited from (String) ⇒ Any

Inherited from Iterable[(String, Any)]

Inherited from IterableLike[(String, Any), Map[String, Any]]

Inherited from Equals

Inherited from Traversable[(String, Any)]

Inherited from GenericTraversableTemplate[(String, Any), Iterable]

Inherited from TraversableLike[(String, Any), Map[String, Any]]

Inherited from TraversableOnce[(String, Any)]

Inherited from FilterMonadic[(String, Any), Map[String, Any]]

Inherited from HasNewBuilder[(String, Any), Map[String, Any]]

Inherited from AnyRef

Inherited from Any