Packages

t

extruder.core

DecodePartiallyApplied

trait DecodePartiallyApplied[F[_], A, S, D, I] extends AnyRef

Self Type
DecodePartiallyApplied[F, A, S, D, I]
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DecodePartiallyApplied
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def defaultSettings: S
    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from DecodePartiallyApplied[F, A, S, D, I] to any2stringadd[DecodePartiallyApplied[F, A, S, D, I]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (DecodePartiallyApplied[F, A, S, D, I], B)
    Implicit
    This member is added by an implicit conversion from DecodePartiallyApplied[F, A, S, D, I] to ArrowAssoc[DecodePartiallyApplied[F, A, S, D, I]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def apply()(implicit decoder: Decoder[F, S, A, D], F: FlatMap[F], loadInput: LoadInput[F, I], transform: Transform[F, S, I, D]): F[A]

    Decode a value A from input data I

    Decode a value A from input data I

    decoder

    implicit decoder instance

    F

    implicit flatMap instance

    loadInput

    implicit instance for loading data externally

    transform

    implicit transform instance to convert from input I to decode data D

    returns

    decoded value A, wrapping in functor F

  7. def apply(namespace: List[String])(implicit decoder: Decoder[F, S, A, D], F: FlatMap[F], loadInput: LoadInput[F, I], transform: Transform[F, S, I, D]): F[A]

    Decode a value A from input data I

    Decode a value A from input data I

    namespace

    namespace under which the data is stored

    decoder

    implicit decoder instance

    F

    implicit flatMap instance

    loadInput

    implicit instance for loading data externally

    transform

    implicit transform instance to convert from input I to decode data D

    returns

    decoded value A, wrapping in functor F

  8. def apply(input: I)(implicit decoder: Decoder[F, S, A, D], F: FlatMap[F], transform: Transform[F, S, I, D]): F[A]

    Decode a value A from input data I

    Decode a value A from input data I

    input

    input data

    decoder

    implicit decoder instance

    F

    implicit flatMap instance

    transform

    implicit transform instance to convert from input I to decode data D

    returns

    decoded value A, wrapping in functor F

  9. def apply(namespace: List[String], input: I)(implicit decoder: Decoder[F, S, A, D], F: FlatMap[F], transform: Transform[F, S, I, D]): F[A]

    Decode a value A from input data I

    Decode a value A from input data I

    namespace

    namespace under which the data is stored

    input

    input data

    decoder

    implicit decoder instance

    F

    implicit flatMap instance

    transform

    implicit transform instance to convert from input I to decode data D

    returns

    decoded value A, wrapping in functor F

  10. def apply(settings: S)(implicit decoder: Decoder[F, S, A, D], F: FlatMap[F], loadInput: LoadInput[F, I], transform: Transform[F, S, I, D]): F[A]

    Decode a value A from input data I

    Decode a value A from input data I

    settings

    settings used when decoding

    decoder

    implicit decoder instance

    F

    implicit flatMap instance

    loadInput

    implicit instance for loading data externally

    transform

    implicit transform instance to convert from input I to decode data D

    returns

    decoded value A, wrapping in functor F

  11. def apply(namespace: List[String], settings: S)(implicit decoder: Decoder[F, S, A, D], F: FlatMap[F], loadInput: LoadInput[F, I], transform: Transform[F, S, I, D]): F[A]

    Decode a value A from input data I

    Decode a value A from input data I

    namespace

    namespace under which the data is stored

    settings

    settings used when decoding

    decoder

    implicit decoder instance

    F

    implicit flatMap instance

    loadInput

    implicit instance for loading data externally

    transform

    implicit transform instance to convert from input I to decode data D

    returns

    decoded value A, wrapping in functor F

  12. def apply(settings: S, input: I)(implicit decoder: Decoder[F, S, A, D], F: FlatMap[F], transform: Transform[F, S, I, D]): F[A]

    Decode a value A from input data I

    Decode a value A from input data I

    settings

    settings used when decoding

    input

    input data

    decoder

    implicit decoder instance

    F

    implicit flatMap instance

    transform

    implicit transform instance to convert from input I to decode data D

    returns

    decoded value A, wrapping in functor F

  13. def apply(namespace: List[String], settings: S, input: I)(implicit decoder: Decoder[F, S, A, D], F: FlatMap[F], transform: Transform[F, S, I, D]): F[A]

    Decode a value A from input data I

    Decode a value A from input data I

    namespace

    namespace under which the data is stored

    settings

    settings used when decoding

    input

    input data

    decoder

    implicit decoder instance

    F

    implicit flatMap instance

    transform

    implicit transform instance to convert from input I to decode data D

    returns

    decoded value A, wrapping in functor F

  14. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  15. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  16. def combine[S1, D1, I1](other: DecodePartiallyApplied[F, A, S1, D1, I1]): DecodePartiallyApplied[F, A, (S, S1), (D, D1), (I, I1)]

    Combine decoder with another decoder instance

    Combine decoder with another decoder instance

    S1

    other source's settings type

    D1

    other source's decode data type

    I1

    other source's input data type

    other

    other data source's DecodePartiallyAppliedWithDefaultSettings to provide a default settings value

    returns

    a new combined instance of DecodePartiallyAppliedWithDefaultSettings

  17. def combine(other: Decode with DataSource): DecodePartiallyApplied[F, A, (S, (other)#Sett), (D, (other)#DecodeData), (I, (other)#InputData)]

    Combine decoder with another decoder instance

    Combine decoder with another decoder instance

    other

    other data source from where types can be taken

    returns

    a new combined instance of DecodePartiallyApplied

  18. def combine[S1, D1, I1](settings: S1): DecodePartiallyApplied[F, A, (S, S1), (D, D1), (I, I1)]

    Combine decoder with another decoder instance

    Combine decoder with another decoder instance

    S1

    other source's settings type

    D1

    other source's decode data type

    I1

    other source's input data type

    settings

    other data source's settings to provide a default value for in DecodePartiallyAppliedWithDefaultSettings

    returns

    a new combined instance of DecodePartiallyAppliedWithDefaultSettings

  19. def ensuring(cond: (DecodePartiallyApplied[F, A, S, D, I]) ⇒ Boolean, msg: ⇒ Any): DecodePartiallyApplied[F, A, S, D, I]
    Implicit
    This member is added by an implicit conversion from DecodePartiallyApplied[F, A, S, D, I] to Ensuring[DecodePartiallyApplied[F, A, S, D, I]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. def ensuring(cond: (DecodePartiallyApplied[F, A, S, D, I]) ⇒ Boolean): DecodePartiallyApplied[F, A, S, D, I]
    Implicit
    This member is added by an implicit conversion from DecodePartiallyApplied[F, A, S, D, I] to Ensuring[DecodePartiallyApplied[F, A, S, D, I]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. def ensuring(cond: Boolean, msg: ⇒ Any): DecodePartiallyApplied[F, A, S, D, I]
    Implicit
    This member is added by an implicit conversion from DecodePartiallyApplied[F, A, S, D, I] to Ensuring[DecodePartiallyApplied[F, A, S, D, I]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. def ensuring(cond: Boolean): DecodePartiallyApplied[F, A, S, D, I]
    Implicit
    This member is added by an implicit conversion from DecodePartiallyApplied[F, A, S, D, I] to Ensuring[DecodePartiallyApplied[F, A, S, D, I]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  25. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from DecodePartiallyApplied[F, A, S, D, I] to StringFormat[DecodePartiallyApplied[F, A, S, D, I]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  26. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  31. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  32. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  33. def toString(): String
    Definition Classes
    AnyRef → Any
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. def [B](y: B): (DecodePartiallyApplied[F, A, S, D, I], B)
    Implicit
    This member is added by an implicit conversion from DecodePartiallyApplied[F, A, S, D, I] to ArrowAssoc[DecodePartiallyApplied[F, A, S, D, I]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from DecodePartiallyApplied[F, A, S, D, I] to any2stringadd[DecodePartiallyApplied[F, A, S, D, I]]

Inherited by implicit conversion StringFormat from DecodePartiallyApplied[F, A, S, D, I] to StringFormat[DecodePartiallyApplied[F, A, S, D, I]]

Inherited by implicit conversion Ensuring from DecodePartiallyApplied[F, A, S, D, I] to Ensuring[DecodePartiallyApplied[F, A, S, D, I]]

Inherited by implicit conversion ArrowAssoc from DecodePartiallyApplied[F, A, S, D, I] to ArrowAssoc[DecodePartiallyApplied[F, A, S, D, I]]

Ungrouped