boopickle

BasicPicklers

Related Doc: package boopickle

object BasicPicklers extends PicklerHelper

Linear Supertypes
PicklerHelper, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BasicPicklers
  2. PicklerHelper
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

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

    returns

  5. object BooleanPickler extends P[Boolean]

  6. object ByteBufferPickler extends P[ByteBuffer]

  7. object BytePickler extends P[Byte]

  8. object CharPickler extends P[Char]

  9. object DoublePickler extends P[Double]

  10. object DurationPickler extends P[Duration]

  11. def EitherPickler[T, S](implicit arg0: P[T], arg1: P[S]): P[Either[T, S]]

  12. def FiniteDurationPickler: P[FiniteDuration]

  13. object FloatPickler extends P[Float]

  14. def InfiniteDurationPickler: P[Infinite]

  15. object IntPickler extends P[Int]

  16. def IterablePickler[T, V[_] <: Iterable[_]](implicit arg0: P[T], cbf: CanBuildFrom[Nothing, T, V[T]]): P[V[T]]

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

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

    T

    type of the values

    V

    type of the collection

    returns

  17. def LeftPickler[T, S](implicit arg0: P[T], arg1: P[S]): P[Left[T, S]]

  18. object LongPickler extends P[Long]

  19. def MapPickler[T, S, V[_, _] <: Map[_, _]](implicit arg0: P[T], arg1: P[S], cbf: CanBuildFrom[Nothing, (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

    returns

  20. def OptionPickler[T](implicit arg0: P[T]): P[Option[T]]

  21. def RightPickler[T, S](implicit arg0: P[T], arg1: P[S]): P[Right[T, S]]

  22. object ShortPickler extends P[Short]

  23. def SomePickler[T](implicit arg0: P[T]): P[Some[T]]

  24. object StringPickler extends P[String]

  25. object UUIDPickler extends P[UUID]

  26. val UnitPickler: ConstPickler[Unit]

  27. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  28. def clone(): AnyRef

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

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  32. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  34. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  35. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  36. final def notify(): Unit

    Definition Classes
    AnyRef
  37. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  38. 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
  39. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  40. def toString(): String

    Definition Classes
    AnyRef → Any
  41. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. 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

Inherited from PicklerHelper

Inherited from AnyRef

Inherited from Any

Ungrouped