CompiledJq

fs2.data.json.jq.CompiledJq
trait CompiledJq[F[_]] extends (F, Token) => Token

A pipe running the compiled jq query on the input stream of JSON tokens.

Attributes

Source
CompiledJq.scala
Graph
Supertypes
trait Stream[F, Token] => Stream[F, Token]
class Object
trait Matchable
class Any
Known subtypes
class PipedCompiledJq[F]

Members list

Value members

Abstract methods

def andThen(that: CompiledJq[F]): CompiledJq[F]

Allows for piping this compiled jq query feeding its result to that compiled jq query.

Allows for piping this compiled jq query feeding its result to that compiled jq query.

Attributes

Source
CompiledJq.scala

Concrete methods

def |(that: CompiledJq[F]): CompiledJq[F]

Alias for andThen.

Alias for andThen.

Attributes

Source
CompiledJq.scala

Inherited methods

def andThen[A](g: Stream[F, Token] => A): T1 => A

Attributes

Inherited from:
Function1
def apply(v1: Stream[F, Token]): R

Attributes

Inherited from:
Function1
def compose[A](g: A => Stream[F, Token]): A => R

Attributes

Inherited from:
Function1
override def toString(): String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Function1 -> Any
Inherited from:
Function1