Packages

sealed trait JsonCursor[-From, +To <: Json] extends AnyRef

Self Type
JsonCursor[From, To]
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JsonCursor
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def >>>[Next <: Json](that: JsonCursor[To, Next]): JsonCursor[From, Next]
  2. final def element(index: Int)(implicit ev: <:<[To, Arr]): DownElement
  3. final def field(field: String)(implicit ev: <:<[To, Obj]): DownField
  4. final def filterType[B <: Json](jsonType: JsonType[B]): JsonCursor[Json, B]
  5. final def isArray: JsonCursor[Json, Arr]
  6. final def isBool: JsonCursor[Json, Bool]
  7. final def isNull: JsonCursor[Json, Null]
  8. final def isNumber: JsonCursor[Json, Num]
  9. final def isObject: JsonCursor[Json, Obj]
  10. final def isString: JsonCursor[Json, Str]