Packages

  • package root
    Definition Classes
    root
  • package fs2
    Definition Classes
    root
  • package data
    Definition Classes
    fs2
  • package json

    Handles stream parsing and traversing of json documents.

    Handles stream parsing and traversing of json documents.

    Definition Classes
    data
  • package selector

    Contains a DSL to build a json selector.

    Contains a DSL to build a json selector. Start a selector with root and then chain the rest.

    val sel = root.index(10).?.fields("a", "b").compile
    Definition Classes
    json
  • object SelectorBuilder
    Definition Classes
    selector
  • SelectorOps

implicit final class SelectorOps[M, S, B <: SelectorBuilder[M, S]] extends AnyVal

Source
dsl.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SelectorOps
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new SelectorOps(inner: B with SelectorBuilder[M, S])

Value Members

  1. def ![O](implicit M: Aux[B, O, S]): O

    Makes the selector to which it applies mandatory.

    Makes the selector to which it applies mandatory. The selection will fail if the selected fields are not present in the object.

  2. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  3. final def ##: Int
    Definition Classes
    Any
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  5. def ?[O](implicit L: Aux[B, O, M]): O

    Makes the selector to which it applies lenient.

    Makes the selector to which it applies lenient. The selection will not fail if the value it applies to is not an array or object.

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  8. val inner: B with SelectorBuilder[M, S]
  9. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  10. def toString(): String
    Definition Classes
    Any

Inherited from AnyVal

Inherited from Any

Ungrouped