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 BigDecimalPickler extends P[BigDecimal]

  6. object BigIntPickler extends P[BigInt]

  7. object BooleanPickler extends P[Boolean]

  8. object ByteBufferPickler extends P[ByteBuffer]

  9. object BytePickler extends P[Byte]

  10. object CharPickler extends P[Char]

  11. object DoublePickler extends P[Double]

  12. object DurationPickler extends P[Duration]

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

  14. def FiniteDurationPickler: P[FiniteDuration]

  15. object FloatPickler extends P[Float]

  16. def InfiniteDurationPickler: P[Infinite]

  17. object IntPickler extends P[Int]

  18. 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

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

  20. object LongPickler extends P[Long]

  21. 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

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

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

  24. object ShortPickler extends P[Short]

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

  26. object StringPickler extends P[String]

  27. object UUIDPickler extends P[UUID]

  28. val UnitPickler: ConstPickler[Unit]

  29. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  30. def clone(): AnyRef

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  42. def toString(): String

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

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

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

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