Packages

  • package root
    Definition Classes
    root
  • package classy
    Definition Classes
    root
  • package core

    Case classy's core types.

    Case classy's core types.

    Available with the "classy-core" module.

    Definition Classes
    classy
  • package wheel

    A small set of type classes (with partial implementations) needed for some of the internal operations of this library.

    A small set of type classes (with partial implementations) needed for some of the internal operations of this library.

    These aren't intended to be used as foundations for any code outside of this library.

  • DecodeError
  • Decoder
  • Read
p

classy

core

package core

Case classy's core types.

Available with the "classy-core" module.

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

Type Members

  1. sealed abstract class DecodeError extends Product with Serializable

    An error that occurred while decoding data

  2. trait Decoder [A, B] extends Serializable

    A type class capturing the ability to decode data of type A to B.

    A type class capturing the ability to decode data of type A to B.

    To construct a new decoder, consider using Decoder.instance.

  3. trait Read [A, B] extends Serializable

    Read captures the ability to create a Decoder given a path string.

    Read captures the ability to create a Decoder given a path string.

    A

    type A of created decoders

    B

    type B of created decoders

Value Members

  1. object DecodeError extends DecodeErrorInstances with Serializable
  2. object Decoder extends Serializable
  3. object Read extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped