trait BasicImplicitPicklers extends PicklerHelper with XCompatImplicitPicklers
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- BasicImplicitPicklers
- XCompatImplicitPicklers
- XCompatImplicitPicklers1
- PicklerHelper
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- type P[A] = Pickler[A]
- Attributes
- protected
- Definition Classes
- PicklerHelper
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- implicit lazy val UUIDPickler: P[UUID]
- implicit def arrayPickler[T](implicit arg0: P[T], arg1: ClassTag[T]): P[Array[T]]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit lazy val bigDecimalPickler: P[BigDecimal]
- implicit lazy val bigIntPickler: P[BigInt]
- implicit def booleanPickler: P[Boolean]
- implicit def byteBufferPickler: P[ByteBuffer]
- implicit def bytePickler: P[Byte]
- implicit def charPickler: P[Char]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- implicit def doublePickler: P[Double]
- implicit lazy val durationPickler: P[Duration]
- implicit def eitherPickler[T, S](implicit arg0: P[T], arg1: P[S]): P[Either[T, S]]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- implicit lazy val finiteDurationPickler: P[FiniteDuration]
- implicit def floatPickler: P[Float]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- implicit lazy val infiniteDurationPickler: P[Infinite]
- implicit def intPickler: P[Int]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- implicit def iterablePickler[A, F[_] <: Iterable[_]](implicit arg0: P[A], cbf: Factory[A, F[A]]): P[F[A]]
- Definition Classes
- XCompatImplicitPicklers1
- implicit def leftPickler[T, S](implicit arg0: P[T], arg1: P[S]): P[Left[T, S]]
- implicit def longPickler: P[Long]
- implicit def mapPickler[K, V, M[_, _] <: Map[_, _]](implicit arg0: P[K], arg1: P[V], f: Factory[(K, V), M[K, V]]): P[M[K, V]]
- Definition Classes
- XCompatImplicitPicklers1
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- implicit def optionPickler[T](implicit arg0: P[T]): P[Option[T]]
- 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
- implicit def rightPickler[T, S](implicit arg0: P[T], arg1: P[S]): P[Right[T, S]]
- implicit def seqMapPickler[K, V](implicit k: P[K], v: P[V]): P[SeqMap[K, V]]
- Definition Classes
- XCompatImplicitPicklers
- implicit def shortPickler: P[Short]
- implicit def somePickler[T](implicit arg0: P[T]): P[Some[T]]
- implicit def stringPickler: P[String]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- implicit def unitPickler: ConstPickler[Unit]
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- 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