Trait

scala.pickling.pickler

CollectionPicklers

Related Doc: package pickler

Permalink

trait CollectionPicklers extends AllGenPicklers with MutableMapPicklers with ImmutableSortedMapPicklers with MapPicklers with MutableSortedSetPicklers with MutableSetPicklers with ImmutableSortedSetPicklers with SetPicklers with ArrayBufferPicklers with ArrayPicklers with VectorPicklers with LinearSeqPicklers with IndexedSeqPicklers with SeqPicklers with IterablePicklers

All picklers for collections with exception of List which is handled by macro.

These need to be between the big picklers and the gen picklers.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. CollectionPicklers
  2. IterablePicklers
  3. SeqPicklers
  4. IndexedSeqPicklers
  5. LinearSeqPicklers
  6. VectorPicklers
  7. ArrayPicklers
  8. ArrayBufferPicklers
  9. SetPicklers
  10. ImmutableSortedSetPicklers
  11. MutableSetPicklers
  12. MutableSortedSetPicklers
  13. MapPicklers
  14. ImmutableSortedMapPicklers
  15. MutableMapPicklers
  16. AllGenPicklers
  17. GenUnpicklers
  18. GenOpenSumUnpicklers
  19. GenPicklers
  20. LowPriorityPicklers
  21. AnyUnpicklers
  22. AnyRef
  23. Any
  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. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. implicit val anyUnpickler: Unpickler[Any]

    Permalink
    Definition Classes
    AnyUnpicklers
  5. implicit def arrayBufferPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[ArrayBuffer[T]], cbf: CanBuildFrom[ArrayBuffer[T], T, ArrayBuffer[T]]): Pickler[ArrayBuffer[T]] with Unpickler[ArrayBuffer[T]]

    Permalink
    Definition Classes
    ArrayBufferPicklers
  6. implicit def arrayPickler[T >: Null](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[Array[T]], cbf: CanBuildFrom[Array[T], T, Array[T]]): Pickler[Array[T]] with Unpickler[Array[T]]

    Permalink
    Definition Classes
    ArrayPicklers
  7. final def asInstanceOf[T0]: T0

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

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

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. implicit macro def genPickler[T]: Pickler[T]

    Permalink
    Definition Classes
    GenPicklers
  13. implicit macro def genUnpickler[T]: Unpickler[T] with Generated

    Permalink
    Definition Classes
    GenUnpicklers
  14. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. implicit def immutableSortedMapPickler[K, V](implicit arg0: FastTypeTag[K], arg1: FastTypeTag[V], elemPickler: Pickler[(K, V)], elemUnpickler: Unpickler[(K, V)], pairTag: FastTypeTag[(K, V)], collTag: FastTypeTag[SortedMap[K, V]], cbf: CanBuildFrom[SortedMap[K, V], (K, V), SortedMap[K, V]]): Pickler[SortedMap[K, V]] with Unpickler[SortedMap[K, V]]

    Permalink
    Definition Classes
    ImmutableSortedMapPicklers
  17. implicit def immutableSortedSetPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[SortedSet[T]], cbf: CanBuildFrom[SortedSet[T], T, SortedSet[T]]): Pickler[SortedSet[T]] with Unpickler[SortedSet[T]]

    Permalink
    Definition Classes
    ImmutableSortedSetPicklers
  18. implicit def indexedSeqPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[collection.IndexedSeq[T]], cbf: CanBuildFrom[collection.IndexedSeq[T], T, collection.IndexedSeq[T]]): Pickler[collection.IndexedSeq[T]] with Unpickler[collection.IndexedSeq[T]]

    Permalink
    Definition Classes
    IndexedSeqPicklers
  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. implicit def iterablePickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[Iterable[T]], cbf: CanBuildFrom[Iterable[T], T, Iterable[T]]): Pickler[Iterable[T]] with Unpickler[Iterable[T]]

    Permalink
    Definition Classes
    IterablePicklers
  21. implicit def linearSeqPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[LinearSeq[T]], cbf: CanBuildFrom[LinearSeq[T], T, LinearSeq[T]]): Pickler[LinearSeq[T]] with Unpickler[LinearSeq[T]]

    Permalink
    Definition Classes
    LinearSeqPicklers
  22. implicit def listPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], colTag: FastTypeTag[List[T]], cbf: CanBuildFrom[List[T], T, List[T]]): Pickler[List[T]] with Unpickler[List[T]]

    Permalink
    Definition Classes
    IterablePicklers
  23. implicit def mapPickler[K, V](implicit arg0: FastTypeTag[K], arg1: FastTypeTag[V], elemPickler: Pickler[(K, V)], elemUnpickler: Unpickler[(K, V)], pairTag: FastTypeTag[(K, V)], collTag: FastTypeTag[Map[K, V]], cbf: CanBuildFrom[Map[K, V], (K, V), Map[K, V]]): Pickler[Map[K, V]] with Unpickler[Map[K, V]]

    Permalink
    Definition Classes
    MapPicklers
  24. implicit def mutableMapPickler[K, V](implicit arg0: FastTypeTag[K], arg1: FastTypeTag[V], elemPickler: Pickler[(K, V)], elemUnpickler: Unpickler[(K, V)], pairTag: FastTypeTag[(K, V)], collTag: FastTypeTag[Map[K, V]], cbf: CanBuildFrom[Map[K, V], (K, V), Map[K, V]]): Pickler[Map[K, V]] with Unpickler[Map[K, V]]

    Permalink
    Definition Classes
    MutableMapPicklers
  25. implicit def mutableSetPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[Set[T]], cbf: CanBuildFrom[Set[T], T, Set[T]]): Pickler[Set[T]] with Unpickler[Set[T]]

    Permalink
    Definition Classes
    MutableSetPicklers
  26. implicit def mutableSortedSetPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[SortedSet[T]], cbf: CanBuildFrom[SortedSet[T], T, SortedSet[T]]): Pickler[SortedSet[T]] with Unpickler[SortedSet[T]]

    Permalink
    Definition Classes
    MutableSortedSetPicklers
  27. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  30. implicit def seqPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[Seq[T]], cbf: CanBuildFrom[Seq[T], T, Seq[T]]): Pickler[Seq[T]] with Unpickler[Seq[T]]

    Permalink
    Definition Classes
    SeqPicklers
  31. implicit def setPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[Set[T]], cbf: CanBuildFrom[Set[T], T, Set[T]]): Pickler[Set[T]] with Unpickler[Set[T]]

    Permalink
    Definition Classes
    SetPicklers
  32. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  34. implicit def vectorPickler[T](implicit arg0: FastTypeTag[T], elemPickler: Pickler[T], elemUnpickler: Unpickler[T], collTag: FastTypeTag[Vector[T]], cbf: CanBuildFrom[Vector[T], T, Vector[T]]): Pickler[Vector[T]] with Unpickler[Vector[T]]

    Permalink
    Definition Classes
    VectorPicklers
  35. final def wait(): Unit

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

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

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

Inherited from IterablePicklers

Inherited from SeqPicklers

Inherited from IndexedSeqPicklers

Inherited from LinearSeqPicklers

Inherited from VectorPicklers

Inherited from ArrayPicklers

Inherited from ArrayBufferPicklers

Inherited from SetPicklers

Inherited from MutableSetPicklers

Inherited from MutableSortedSetPicklers

Inherited from MapPicklers

Inherited from MutableMapPicklers

Inherited from AllGenPicklers

Inherited from GenUnpicklers

Inherited from GenOpenSumUnpicklers

Inherited from GenPicklers

Inherited from LowPriorityPicklers

Inherited from AnyUnpicklers

Inherited from AnyRef

Inherited from Any

Ungrouped