object Collecting
Companion object for Collecting
that provides implicit implementations for the following types:
scala.collection.GenTraversable
Array
java.util.Collection
java.util.Map
- Source
- Collecting.scala
- Alphabetic
- By Inheritance
- Collecting
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
implicit
def
collectingNatureOfArray[E]: Collecting[E, Array[E]]
Implicit to support
Collecting
nature ofArray
.Implicit to support
Collecting
nature ofArray
.- E
the type of the element in the
Array
- returns
Collecting[E, Array[E]]
that supportsArray
inloneElement
syntax
-
implicit
def
collectingNatureOfEvery[E, EVERY[e] <: Every[e]]: Collecting[E, EVERY[E]]
Implicit to support
Collecting
nature ofEvery
.Implicit to support
Collecting
nature ofEvery
.- E
the type of the element in the
Every
- EVERY
any subtype of
Every
- returns
Collecting[EVERY[E]]
that supportsEvery
inloneElement
syntax
-
implicit
def
collectingNatureOfGenTraversable[E, TRAV[e] <: GenTraversable[e]]: Collecting[E, TRAV[E]]
Implicit to support
Collecting
nature ofGenTraversable
.Implicit to support
Collecting
nature ofGenTraversable
.- E
the type of the element in the
GenTraversable
- TRAV
any subtype of
GenTraversable
- returns
Collecting[E, TRAV[E]]
that supportsGenTraversable
inloneElement
syntax
-
implicit
def
collectingNatureOfJavaCollection[E, JCOL[e] <: Collection[e]]: Collecting[E, JCOL[E]]
Implicit to support
Collecting
nature ofjava.util.Collection
.Implicit to support
Collecting
nature ofjava.util.Collection
.- E
the type of the element in the
java.util.Collection
- JCOL
any subtype of
java.util.Collection
- returns
Collecting[E, JCOL[E]]
that supportsjava.util.Collection
inloneElement
syntax
-
implicit
def
collectingNatureOfJavaMap[K, V, JMAP[k, v] <: Map[k, v]]: Collecting[Entry[K, V], JMAP[K, V]]
Implicit to support
Collecting
nature ofjava.util.Map
.Implicit to support
Collecting
nature ofjava.util.Map
.- K
the type of the key in the
java.util.Map
- V
the type of the value in the
java.util.Map
- JMAP
any subtype of
java.util.Map
- returns
Collecting[org.scalatest.Entry[K, V], JMAP[K, V]]
that supportsjava.util.Map
inloneElement
syntax
-
implicit
def
collectingNatureOfString: Collecting[Char, String]
Implicit to support
Collecting
nature ofString
.Implicit to support
Collecting
nature ofString
.- returns
Collecting[Char, String]
that supportsString
inloneElement
syntax