o

boopickle

BasicPicklers

object BasicPicklers extends PicklerHelper with XCompatPicklers

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BasicPicklers
  2. XCompatPicklers
  3. PicklerHelper
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type P[A] = Pickler[A]
    Attributes
    protected
    Definition Classes
    PicklerHelper

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def ArrayPickler[T](implicit arg0: P[T], arg1: ClassTag[T]): P[Array[T]]

    Specific pickler for Arrays

    Specific pickler for Arrays

    T

    Type of values

  5. def EitherPickler[T, S](implicit arg0: P[T], arg1: P[S]): P[Either[T, S]]
  6. def FiniteDurationPickler: P[FiniteDuration]
  7. def InfiniteDurationPickler: P[Infinite]
  8. def IterablePickler[T, V[_] <: Iterable[_]](implicit arg0: P[T], cbf: Factory[T, V[T]]): P[V[T]]

    This pickler works on all collections that derive from Iterable[T] (Vector, Set, List, etc)

    This pickler works on all collections that derive from Iterable[T] (Vector, Set, List, etc)

    T

    type of the values

    V

    type of the collection

    Definition Classes
    XCompatPicklers
  9. def LeftPickler[T, S](implicit arg0: P[T], arg1: P[S]): P[Left[T, S]]
  10. def MapPickler[T, S, V[_, _] <: Map[_, _]](implicit arg0: P[T], arg1: P[S], cbf: Factory[(T, S), V[T, S]]): P[V[T, S]]

    Maps require a specific pickler as they have two type parameters.

    Maps require a specific pickler as they have two type parameters.

    T

    Type of keys

    S

    Type of values

    Definition Classes
    XCompatPicklers
  11. def OptionPickler[T](implicit arg0: P[T]): P[Option[T]]
  12. def RightPickler[T, S](implicit arg0: P[T], arg1: P[S]): P[Right[T, S]]
  13. def SomePickler[T](implicit arg0: P[T]): P[Some[T]]
  14. val UnitPickler: ConstPickler[Unit]
  15. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  16. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  19. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. def read[A](implicit state: UnpickleState, u: P[A]): A

    Helper function to unpickle a type

    Helper function to unpickle a type

    Attributes
    protected
    Definition Classes
    PicklerHelper
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  32. def write[A](value: A)(implicit state: PickleState, p: P[A]): Unit

    Helper function to write pickled types

    Helper function to write pickled types

    Attributes
    protected
    Definition Classes
    PicklerHelper
  33. object BigDecimalPickler extends P[BigDecimal]
  34. object BigIntPickler extends P[BigInt]
  35. object BooleanPickler extends P[Boolean]
  36. object ByteBufferPickler extends P[ByteBuffer]
  37. object BytePickler extends P[Byte]
  38. object CharPickler extends P[Char]
  39. object DoublePickler extends P[Double]
  40. object DurationPickler extends P[Duration]
  41. object FloatPickler extends P[Float]
  42. object IntPickler extends P[Int]
  43. object LongPickler extends P[Long]
  44. object ShortPickler extends P[Short]
  45. object StringPickler extends P[String]
  46. object UUIDPickler extends P[UUID]

Inherited from XCompatPicklers

Inherited from PicklerHelper

Inherited from AnyRef

Inherited from Any

Ungrouped