Object

boopickle

BasicPicklers

Related Doc: package boopickle

Permalink

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
Visibility
  1. Public
  2. All

Type Members

  1. type P[A] = Pickler[A]

    Permalink
    Attributes
    protected
    Definition Classes
    PicklerHelper

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. def ArrayPickler[T](implicit arg0: P[T], arg1: ClassTag[T]): P[Array[T]]

    Permalink

    Specific pickler for Arrays

    Specific pickler for Arrays

    T

    Type of values

  5. object BigDecimalPickler extends P[BigDecimal]

    Permalink
  6. object BigIntPickler extends P[BigInt]

    Permalink
  7. object BooleanPickler extends P[Boolean]

    Permalink
  8. object ByteBufferPickler extends P[ByteBuffer]

    Permalink
  9. object BytePickler extends P[Byte]

    Permalink
  10. object CharPickler extends P[Char]

    Permalink
  11. object DoublePickler extends P[Double]

    Permalink
  12. object DurationPickler extends P[Duration]

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

    Permalink
  14. def FiniteDurationPickler: P[FiniteDuration]

    Permalink
  15. object FloatPickler extends P[Float]

    Permalink
  16. def InfiniteDurationPickler: P[Infinite]

    Permalink
  17. object IntPickler extends P[Int]

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

    Permalink

    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

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

    Permalink
  20. object LongPickler extends P[Long]

    Permalink
  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]]

    Permalink

    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

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

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

    Permalink
  24. object ShortPickler extends P[Short]

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

    Permalink
  26. object StringPickler extends P[String]

    Permalink
  27. object UUIDPickler extends P[UUID]

    Permalink
  28. val UnitPickler: ConstPickler[Unit]

    Permalink
  29. final def asInstanceOf[T0]: T0

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  40. def read[A](implicit state: UnpickleState, u: P[A]): A

    Permalink

    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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. def write[A](value: A)(implicit state: PickleState, p: P[A]): Unit

    Permalink

    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