object EntityDecoder

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EntityDecoder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def apply[F[_], T](implicit ev: EntityDecoder[F, T]): EntityDecoder[F, T]

    Summon an entity decoder using implicits e.g.

    Summon an entity decoder using implicits e.g. val decoder = EntityDecoder[js.Object]

  2. def instance[F[_], T](run: (Message[F]) ⇒ DecodeResult[F, T]): EntityDecoder[F, T]

    Lift function to create a decoder.

    Lift function to create a decoder. You can use another EntityDecoder as the argument.