class CookieMap extends CookieMapVersionSpecific
Adapt cookies of a Message to a mutable Map where cookies are indexed by their name. Requests use the Cookie header and Responses use the Set-Cookie header. If a cookie is added to the CookieMap, a header is automatically added to the Message. You can add the same cookie more than once. Use getAll to retrieve all of them, otherwise only the first one is returned. If a cookie is removed from the CookieMap, a header is automatically removed from the message
- Alphabetic
- By Inheritance
- CookieMap
- CookieMapVersionSpecific
- Map
- MapLike
- Cloneable
- Cloneable
- Cloneable
- Shrinkable
- Builder
- Growable
- Clearable
- Map
- MapLike
- Subtractable
- PartialFunction
- Function1
- GenMap
- GenMapLike
- Iterable
- Iterable
- IterableLike
- Equals
- GenIterable
- GenIterableLike
- Traversable
- Mutable
- Traversable
- GenTraversable
- GenericTraversableTemplate
- TraversableLike
- GenTraversableLike
- Parallelizable
- TraversableOnce
- GenTraversableOnce
- FilterMonadic
- HasNewBuilder
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
class
DefaultKeySet extends AbstractSet[K] with Set[K] with Serializable
- Attributes
- protected
- Definition Classes
- MapLike
-
class
DefaultValuesIterable extends AbstractIterable[V] with Iterable[V] with Serializable
- Attributes
- protected
- Definition Classes
- MapLike
-
class
FilteredKeys extends AbstractMap[K, V] with DefaultMap[K, V]
- Attributes
- protected
- Definition Classes
- MapLike
-
class
MappedValues[W] extends AbstractMap[K, W] with DefaultMap[K, W]
- Attributes
- protected
- Definition Classes
- MapLike
-
type
Self = CookieMap
- Attributes
- protected[this]
- Definition Classes
- TraversableLike
-
class
WithFilter extends FilterMonadic[A, Repr]
- Definition Classes
- TraversableLike
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
+[V1 >: Cookie](elem1: (String, V1), elem2: (String, V1), elems: (String, V1)*): Map[String, V1]
- Definition Classes
- MapLike → MapLike
- Annotations
- @migration
- Migration
(Changed in version 2.8.0)
+creates a new map. Use+=to add an element to this map and return that map itself.
-
def
+[V1 >: Cookie](kv: (String, V1)): Map[String, V1]
- Definition Classes
- MapLike → MapLike → GenMapLike
- Annotations
- @migration
- Migration
(Changed in version 2.8.0)
+creates a new map. Use+=to add an element to this map and return that map itself.
-
def
++[V1 >: Cookie](xs: GenTraversableOnce[(String, V1)]): Map[String, V1]
- Definition Classes
- MapLike → MapLike
- Annotations
- @migration
- Migration
(Changed in version 2.8.0)
++creates a new map. Use++=to add an element to this map and return that map itself.
-
def
++[B >: (String, Cookie), That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[CookieMap, B, That]): That
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
++:[B >: (String, Cookie), That](that: Traversable[B])(implicit bf: CanBuildFrom[CookieMap, B, That]): That
- Definition Classes
- TraversableLike
-
def
++:[B >: (String, Cookie), That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[CookieMap, B, That]): That
- Definition Classes
- TraversableLike
-
def
++=(cookies: TraversableOnce[(String, Cookie)]): CookieMap.this.type
- Definition Classes
- CookieMapVersionSpecific → Growable
-
def
+=(cookie: Cookie): CookieMap
Adds the given
cookieinto this map.Adds the given
cookieinto this map.On a Response: existing cookies with this name but different domain/path will be kept. If there is already an identical cookie (different value but name/path/domain is the same) in the map, it will be replaced within a new version.
On a Request: existing cookies with this name will be kept, as request cookies do not have a domain/path to distinguish them, yet the same cookie name can be repeated in a request. If there are already cookies with the given
nameandvalue, they will be removed. -
def
+=(cookie: (String, Cookie)): CookieMap.this.type
- Definition Classes
- CookieMapVersionSpecific → MapLike → Builder → Growable
-
def
+=(elem1: (String, Cookie), elem2: (String, Cookie), elems: (String, Cookie)*): CookieMap.this.type
- Definition Classes
- Growable
-
def
-(elem1: String, elem2: String, elems: String*): CookieMap
- Definition Classes
- MapLike → Subtractable
- Annotations
- @migration
- Migration
(Changed in version 2.8.0)
-creates a new map. Use-=to remove an element from this map and return that map itself.
-
def
-(key: String): CookieMap
- Definition Classes
- MapLike → MapLike → Subtractable → GenMapLike
- Annotations
- @migration
- Migration
(Changed in version 2.8.0)
-creates a new map. Use-=to remove an element from this map and return that map itself.
-
def
--(xs: GenTraversableOnce[String]): CookieMap
- Definition Classes
- MapLike → Subtractable
- Annotations
- @migration
- Migration
(Changed in version 2.8.0)
--creates a new map. Use--=to remove an element from this map and return that map itself.
-
def
--=(names: TraversableOnce[String]): CookieMap.this.type
- Definition Classes
- CookieMapVersionSpecific → Shrinkable
-
def
-=(name: String): CookieMap.this.type
- Definition Classes
- CookieMapVersionSpecific → MapLike → Shrinkable
-
def
-=(elem1: String, elem2: String, elems: String*): CookieMap.this.type
- Definition Classes
- Shrinkable
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
add(cookie: Cookie): Unit
Adds the given
cookieinto this map.Adds the given
cookieinto this map.On a Response: existing cookies with this name but different domain/path will be kept. If there is already an identical cookie (different value but name/path/domain is the same) in the map, it will be replaced within a new version.
On a Request: existing cookies with this name will be kept, as request cookies do not have a domain/path to distinguish them, yet the same cookie name can be repeated in a request. If there are already cookies with the given
nameandvalue, they will be removed.- See also
addAll for adding cookies in bulk
-
def
add(name: String, cookie: Cookie): Unit
Adds the given
cookiewithnameinto this map.Adds the given
cookiewithnameinto this map.On a Response: existing cookies with this name but different domain/path will be kept. If there is already an identical cookie (different value but name/path/domain is the same) in the map, it will be replaced within a new version.
On a Request: existing cookies with this name will be kept, as request cookies do not have a domain/path to distinguish them, yet the same cookie name can be repeated in a request. If there are already cookies with the given
nameandvalue, they will be removed.- See also
addAll for adding cookies in bulk
-
def
addAll(cookies: TraversableOnce[Cookie]): Unit
Adds multiple
cookiesinto this map.Adds multiple
cookiesinto this map.On a Response: existing cookies with this name but different domain/path will be kept. If there is already an identical cookie (different value but name/path/domain is the same) in the map, it will be replaced within a new version.
On a Request: existing cookies with this name will be kept, as request cookies do not have a domain/path to distinguish them, yet the same cookie name can be repeated in a request. If there are already cookies with the given
nameandvalue, they will be removed. -
def
addCookie(cookie: (String, Cookie)): CookieMap.this.type
Adds the given
cookie(which is a tuple of cookienameandCookieitself) into this map.Adds the given
cookie(which is a tuple of cookienameandCookieitself) into this map.On a Response: existing cookies with this name but different domain/path will be kept. If there is already an identical cookie (different value but name/path/domain is the same) in the map, it will be replaced within a new version.
On a Request: existing cookies with this name will be kept, as request cookies do not have a domain/path to distinguish them, yet the same cookie name can be repeated in a request. If there are already cookies with the given
nameandvalue, they will be removed.- Attributes
- protected
- Definition Classes
- CookieMap → CookieMapVersionSpecific
-
def
addCookies(cookies: TraversableOnce[(String, Cookie)]): CookieMap.this.type
Adds the given
cookies(which are tuples of cookienameandCookieitself) into this map.Adds the given
cookies(which are tuples of cookienameandCookieitself) into this map.On a Response: existing cookies with this name but different domain/path will be kept. If there is already an identical cookie (different value but name/path/domain is the same) in the map, it will be replaced within a new version.
On a Request: existing cookies with this name will be kept, as request cookies do not have a domain/path to distinguish them, yet the same cookie name can be repeated in a request. If there are already cookies with the given
nameandvalue, they will be removed.- Attributes
- protected
- Definition Classes
- CookieMap → CookieMapVersionSpecific
-
def
addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
- Definition Classes
- MapLike → TraversableOnce
-
def
addString(b: StringBuilder): StringBuilder
- Definition Classes
- TraversableOnce
-
def
addString(b: StringBuilder, sep: String): StringBuilder
- Definition Classes
- TraversableOnce
-
def
aggregate[B](z: ⇒ B)(seqop: (B, (String, Cookie)) ⇒ B, combop: (B, B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
andThen[C](k: (Cookie) ⇒ C): PartialFunction[String, C]
- Definition Classes
- PartialFunction → Function1
-
def
apply(key: String): Cookie
- Definition Classes
- MapLike → GenMapLike → Function1
-
def
applyOrElse[K1 <: String, V1 >: Cookie](x: K1, default: (K1) ⇒ V1): V1
- Definition Classes
- MapLike → PartialFunction
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
canEqual(that: Any): Boolean
- Definition Classes
- IterableLike → Equals
-
def
clear(): Unit
- Definition Classes
- MapLike → Builder → Growable → Clearable
-
def
clone(): CookieMap
- Definition Classes
- MapLike → Cloneable → AnyRef
-
def
collect[B, That](pf: PartialFunction[(String, Cookie), B])(implicit bf: CanBuildFrom[CookieMap, B, That]): That
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
collectFirst[B](pf: PartialFunction[(String, Cookie), B]): Option[B]
- Definition Classes
- TraversableOnce
-
def
companion: GenericCompanion[Iterable]
- Definition Classes
- Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
-
def
compose[A](g: (A) ⇒ String): (A) ⇒ Cookie
- Definition Classes
- Function1
- Annotations
- @unspecialized()
-
def
contains(key: String): Boolean
- Definition Classes
- MapLike → GenMapLike
-
def
copyToArray[B >: (String, Cookie)](xs: Array[B], start: Int, len: Int): Unit
- Definition Classes
- IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
-
def
copyToArray[B >: (String, Cookie)](xs: Array[B]): Unit
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
copyToArray[B >: (String, Cookie)](xs: Array[B], start: Int): Unit
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
copyToBuffer[B >: (String, Cookie)](dest: Buffer[B]): Unit
- Definition Classes
- TraversableOnce
-
def
count(p: ((String, Cookie)) ⇒ Boolean): Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
default(key: String): Cookie
- Definition Classes
- MapLike → GenMapLike
-
def
drop(n: Int): CookieMap
- Definition Classes
- IterableLike → TraversableLike → GenTraversableLike
-
def
dropRight(n: Int): CookieMap
- Definition Classes
- IterableLike
-
def
dropWhile(p: ((String, Cookie)) ⇒ Boolean): CookieMap
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
empty: CookieMap
- Definition Classes
- CookieMap → CookieMapVersionSpecific → Map → Map → MapLike
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(that: Any): Boolean
- Definition Classes
- GenMapLike → Equals → AnyRef → Any
-
def
exists(p: ((String, Cookie)) ⇒ Boolean): Boolean
- Definition Classes
- IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
-
def
filter(p: ((String, Cookie)) ⇒ Boolean): CookieMap
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
filterKeys(p: (String) ⇒ Boolean): Map[String, Cookie]
- Definition Classes
- MapLike → GenMapLike
-
def
filterNot(p: ((String, Cookie)) ⇒ Boolean): CookieMap
- Definition Classes
- MapLike → TraversableLike → GenTraversableLike
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
find(p: ((String, Cookie)) ⇒ Boolean): Option[(String, Cookie)]
- Definition Classes
- IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
-
def
flatMap[B, That](f: ((String, Cookie)) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[CookieMap, B, That]): That
- Definition Classes
- TraversableLike → GenTraversableLike → FilterMonadic
-
def
flatten[B](implicit asTraversable: ((String, Cookie)) ⇒ GenTraversableOnce[B]): Iterable[B]
- Definition Classes
- GenericTraversableTemplate
-
def
fold[A1 >: (String, Cookie)](z: A1)(op: (A1, A1) ⇒ A1): A1
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
foldLeft[B](z: B)(op: (B, (String, Cookie)) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
foldRight[B](z: B)(op: ((String, Cookie), B) ⇒ B): B
- Definition Classes
- IterableLike → TraversableOnce → GenTraversableOnce
-
def
forall(p: ((String, Cookie)) ⇒ Boolean): Boolean
- Definition Classes
- IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
-
def
foreach[U](f: ((String, Cookie)) ⇒ U): Unit
- Definition Classes
- IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
-
def
genericBuilder[B]: Builder[B, Iterable[B]]
- Definition Classes
- GenericTraversableTemplate
-
def
get(name: String): Option[Cookie]
Fetches the first cookie with the given
namefrom this map.Fetches the first cookie with the given
namefrom this map.- Definition Classes
- CookieMap → MapLike → GenMapLike
-
def
getAll(name: String): Seq[Cookie]
Fetches all cookies with the given
namefrom this map. -
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
getOrElse[V1 >: Cookie](key: String, default: ⇒ V1): V1
- Definition Classes
- MapLike → GenMapLike
-
def
getOrElseUpdate(key: String, op: ⇒ Cookie): Cookie
- Definition Classes
- MapLike
-
def
getValue(name: String): Option[String]
Fetches the value of the first cookie with the given
namefrom this map. -
def
groupBy[K](f: ((String, Cookie)) ⇒ K): Map[K, CookieMap]
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
grouped(size: Int): Iterator[CookieMap]
- Definition Classes
- IterableLike
-
def
hasDefiniteSize: Boolean
- Definition Classes
- TraversableLike → TraversableOnce → GenTraversableOnce
-
def
hashCode(): Int
- Definition Classes
- GenMapLike → AnyRef → Any
-
def
head: (String, Cookie)
- Definition Classes
- IterableLike → TraversableLike → GenTraversableLike
-
def
headOption: Option[(String, Cookie)]
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
init: CookieMap
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
inits: Iterator[CookieMap]
- Definition Classes
- TraversableLike
-
def
isDefinedAt(key: String): Boolean
- Definition Classes
- MapLike → GenMapLike → PartialFunction
-
def
isEmpty: Boolean
- Definition Classes
- MapLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
isTraversableAgain: Boolean
- Definition Classes
- TraversableLike → GenTraversableLike → GenTraversableOnce
-
def
isValid: Boolean
Checks if there was a parse error.
Checks if there was a parse error. Invalid cookies are ignored.
-
def
iterator: Iterator[(String, Cookie)]
Returns an iterator that iterates over all cookies in this map.
Returns an iterator that iterates over all cookies in this map.
- Definition Classes
- CookieMap → MapLike → IterableLike → GenIterableLike
-
def
keySet: Set[String]
- Definition Classes
- MapLike → GenMapLike
-
def
keys: Iterable[String]
- Definition Classes
- MapLike → GenMapLike
- Annotations
- @migration
- Migration
(Changed in version 2.8.0)
keysreturnsIterable[K]rather thanIterator[K].
-
def
keysIterator: Iterator[String]
- Definition Classes
- MapLike → GenMapLike
-
def
last: (String, Cookie)
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
lastOption: Option[(String, Cookie)]
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
lift: (String) ⇒ Option[Cookie]
- Definition Classes
- PartialFunction
-
def
map[B, That](f: ((String, Cookie)) ⇒ B)(implicit bf: CanBuildFrom[CookieMap, B, That]): That
- Definition Classes
- TraversableLike → GenTraversableLike → FilterMonadic
-
def
mapResult[NewTo](f: (CookieMap) ⇒ NewTo): Builder[(String, Cookie), NewTo]
- Definition Classes
- Builder
-
def
mapValues[W](f: (Cookie) ⇒ W): Map[String, W]
- Definition Classes
- MapLike → GenMapLike
-
def
max[B >: (String, Cookie)](implicit cmp: Ordering[B]): (String, Cookie)
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
maxBy[B](f: ((String, Cookie)) ⇒ B)(implicit cmp: Ordering[B]): (String, Cookie)
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
min[B >: (String, Cookie)](implicit cmp: Ordering[B]): (String, Cookie)
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
minBy[B](f: ((String, Cookie)) ⇒ B)(implicit cmp: Ordering[B]): (String, Cookie)
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
mkString: String
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
mkString(sep: String): String
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
mkString(start: String, sep: String, end: String): String
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
newBuilder: Builder[(String, Cookie), CookieMap]
- Attributes
- protected[this]
- Definition Classes
- MapLike → MapLike → TraversableLike → HasNewBuilder
-
def
nonEmpty: Boolean
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
orElse[A1 <: String, B1 >: Cookie](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
- Definition Classes
- PartialFunction
-
def
par: ParMap[String, Cookie]
- Definition Classes
- Parallelizable
-
def
parCombiner: Combiner[(String, Cookie), ParMap[String, Cookie]]
- Attributes
- protected[this]
- Definition Classes
- MapLike → MapLike → TraversableLike → Parallelizable
-
def
partition(p: ((String, Cookie)) ⇒ Boolean): (CookieMap, CookieMap)
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
product[B >: (String, Cookie)](implicit num: Numeric[B]): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
put(key: String, value: Cookie): Option[Cookie]
- Definition Classes
- MapLike
-
def
reduce[A1 >: (String, Cookie)](op: (A1, A1) ⇒ A1): A1
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceLeft[B >: (String, Cookie)](op: (B, (String, Cookie)) ⇒ B): B
- Definition Classes
- TraversableOnce
-
def
reduceLeftOption[B >: (String, Cookie)](op: (B, (String, Cookie)) ⇒ B): Option[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceOption[A1 >: (String, Cookie)](op: (A1, A1) ⇒ A1): Option[A1]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceRight[B >: (String, Cookie)](op: ((String, Cookie), B) ⇒ B): B
- Definition Classes
- IterableLike → TraversableOnce → GenTraversableOnce
-
def
reduceRightOption[B >: (String, Cookie)](op: ((String, Cookie), B) ⇒ B): Option[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
remove(key: String): Option[Cookie]
- Definition Classes
- MapLike
-
def
removeAll(cookies: TraversableOnce[String]): Unit
Removes multiple
cookiesfrom this map. -
def
removeCookie(name: String): CookieMap.this.type
Deletes all cookies with the given
namefrom this map.Deletes all cookies with the given
namefrom this map.- Attributes
- protected
- Definition Classes
- CookieMap → CookieMapVersionSpecific
-
def
removeCookies(xs: TraversableOnce[String]): CookieMap.this.type
- Attributes
- protected
- Definition Classes
- CookieMap → CookieMapVersionSpecific
-
def
repr: CookieMap
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
result(): CookieMap
- Definition Classes
- MapLike → Builder
-
def
retain(p: (String, Cookie) ⇒ Boolean): CookieMap.this.type
- Definition Classes
- MapLike
-
def
reversed: List[(String, Cookie)]
- Attributes
- protected[this]
- Definition Classes
- TraversableOnce
-
def
rewriteCookieHeaders(): Unit
- Attributes
- protected
-
def
runWith[U](action: (Cookie) ⇒ U): (String) ⇒ Boolean
- Definition Classes
- PartialFunction
-
def
sameElements[B >: (String, Cookie)](that: GenIterable[B]): Boolean
- Definition Classes
- IterableLike → GenIterableLike
-
def
scan[B >: (String, Cookie), That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[CookieMap, B, That]): That
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
scanLeft[B, That](z: B)(op: (B, (String, Cookie)) ⇒ B)(implicit bf: CanBuildFrom[CookieMap, B, That]): That
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
scanRight[B, That](z: B)(op: ((String, Cookie), B) ⇒ B)(implicit bf: CanBuildFrom[CookieMap, B, That]): That
- Definition Classes
- TraversableLike → GenTraversableLike
- Annotations
- @migration
- Migration
(Changed in version 2.9.0) The behavior of
scanRighthas changed. The previous behavior can be reproduced with scanRight.reverse.
-
def
seq: Map[String, Cookie]
- Definition Classes
- Map → Map → GenMap → GenMapLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
-
def
size: Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
sizeHint(coll: TraversableLike[_, _], delta: Int): Unit
- Definition Classes
- Builder
-
def
sizeHint(coll: TraversableLike[_, _]): Unit
- Definition Classes
- Builder
-
def
sizeHint(size: Int): Unit
- Definition Classes
- Builder
-
def
sizeHintBounded(size: Int, boundingColl: TraversableLike[_, _]): Unit
- Definition Classes
- Builder
-
def
sizeHintIfCheap: Int
- Attributes
- protected[scala.collection]
- Definition Classes
- GenTraversableOnce
-
def
slice(from: Int, until: Int): CookieMap
- Definition Classes
- IterableLike → TraversableLike → GenTraversableLike
-
def
sliding(size: Int, step: Int): Iterator[CookieMap]
- Definition Classes
- IterableLike
-
def
sliding(size: Int): Iterator[CookieMap]
- Definition Classes
- IterableLike
-
def
span(p: ((String, Cookie)) ⇒ Boolean): (CookieMap, CookieMap)
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
splitAt(n: Int): (CookieMap, CookieMap)
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
stringPrefix: String
- Definition Classes
- MapLike → TraversableLike → GenTraversableLike
-
def
sum[B >: (String, Cookie)](implicit num: Numeric[B]): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
tail: CookieMap
- Definition Classes
- TraversableLike → GenTraversableLike
-
def
tails: Iterator[CookieMap]
- Definition Classes
- TraversableLike
-
def
take(n: Int): CookieMap
- Definition Classes
- IterableLike → TraversableLike → GenTraversableLike
-
def
takeRight(n: Int): CookieMap
- Definition Classes
- IterableLike
-
def
takeWhile(p: ((String, Cookie)) ⇒ Boolean): CookieMap
- Definition Classes
- IterableLike → TraversableLike → GenTraversableLike
-
def
thisCollection: Iterable[(String, Cookie)]
- Attributes
- protected[this]
- Definition Classes
- IterableLike → TraversableLike
-
def
to[Col[_]](implicit cbf: CanBuildFrom[Nothing, (String, Cookie), Col[(String, Cookie)]]): Col[(String, Cookie)]
- Definition Classes
- TraversableLike → TraversableOnce → GenTraversableOnce
-
def
toArray[B >: (String, Cookie)](implicit arg0: ClassTag[B]): Array[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toBuffer[E >: (String, Cookie)]: Buffer[E]
- Definition Classes
- MapLike → TraversableOnce → GenTraversableOnce
-
def
toCollection(repr: CookieMap): Iterable[(String, Cookie)]
- Attributes
- protected[this]
- Definition Classes
- IterableLike → TraversableLike
-
def
toIndexedSeq: IndexedSeq[(String, Cookie)]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toIterable: Iterable[(String, Cookie)]
- Definition Classes
- IterableLike → TraversableOnce → GenTraversableOnce
-
def
toIterator: Iterator[(String, Cookie)]
- Definition Classes
- IterableLike → TraversableLike → GenTraversableOnce
- Annotations
- @deprecatedOverriding( ... , "2.11.0" )
-
def
toList: List[(String, Cookie)]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toMap[T, U](implicit ev: <:<[(String, Cookie), (T, U)]): Map[T, U]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toSeq: Seq[(String, Cookie)]
- Definition Classes
- MapLike → MapLike → TraversableOnce → GenTraversableOnce
-
def
toSet[B >: (String, Cookie)]: Set[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toStream: Stream[(String, Cookie)]
- Definition Classes
- IterableLike → TraversableLike → GenTraversableOnce
-
def
toString(): String
- Definition Classes
- MapLike → TraversableLike → Function1 → AnyRef → Any
-
def
toTraversable: Traversable[(String, Cookie)]
- Definition Classes
- TraversableLike → TraversableOnce → GenTraversableOnce
- Annotations
- @deprecatedOverriding( ... , "2.11.0" )
-
def
toVector: Vector[(String, Cookie)]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
transform(f: (String, Cookie) ⇒ Cookie): CookieMap.this.type
- Definition Classes
- MapLike
-
def
transpose[B](implicit asTraversable: ((String, Cookie)) ⇒ GenTraversableOnce[B]): Iterable[Iterable[B]]
- Definition Classes
- GenericTraversableTemplate
- Annotations
- @migration
- Migration
(Changed in version 2.9.0)
transposethrows anIllegalArgumentExceptionif collections are not uniformly sized.
-
def
unzip[A1, A2](implicit asPair: ((String, Cookie)) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])
- Definition Classes
- GenericTraversableTemplate
-
def
unzip3[A1, A2, A3](implicit asTriple: ((String, Cookie)) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
- Definition Classes
- GenericTraversableTemplate
-
def
update(key: String, value: Cookie): Unit
- Definition Classes
- MapLike
-
def
updated[V1 >: Cookie](key: String, value: V1): Map[String, V1]
- Definition Classes
- MapLike → MapLike
-
def
values: Iterable[Cookie]
- Definition Classes
- MapLike → GenMapLike
- Annotations
- @migration
- Migration
(Changed in version 2.8.0)
valuesreturnsIterable[V]rather thanIterator[V].
-
def
valuesIterator: Iterator[Cookie]
- Definition Classes
- MapLike → GenMapLike
-
def
view(from: Int, until: Int): IterableView[(String, Cookie), CookieMap]
- Definition Classes
- IterableLike → TraversableLike
-
def
view: IterableView[(String, Cookie), CookieMap]
- Definition Classes
- IterableLike → TraversableLike
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
withDefault(d: (String) ⇒ Cookie): Map[String, Cookie]
- Definition Classes
- Map
-
def
withDefaultValue(d: Cookie): Map[String, Cookie]
- Definition Classes
- Map
-
def
withFilter(p: ((String, Cookie)) ⇒ Boolean): FilterMonadic[(String, Cookie), CookieMap]
- Definition Classes
- TraversableLike → FilterMonadic
-
def
zip[A1 >: (String, Cookie), B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[CookieMap, (A1, B), That]): That
- Definition Classes
- IterableLike → GenIterableLike
-
def
zipAll[B, A1 >: (String, Cookie), That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[CookieMap, (A1, B), That]): That
- Definition Classes
- IterableLike → GenIterableLike
-
def
zipWithIndex[A1 >: (String, Cookie), That](implicit bf: CanBuildFrom[CookieMap, (A1, Int), That]): That
- Definition Classes
- IterableLike → GenIterableLike
Deprecated Value Members
-
def
/:[B](z: B)(op: (B, (String, Cookie)) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.10) Use foldLeft instead of /:
-
def
:\[B](z: B)(op: ((String, Cookie), B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.10) Use foldRight instead of :\