package jq
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
trait
CompiledJq[F[_]] extends Pipe[F, Token, Token]
A pipe running the compiled jq query on the input stream of JSON tokens.
-
trait
Compiler[F[_]] extends AnyRef
A compiler for jq queries into some compiled form.
- sealed trait Constructor extends Jq
- sealed trait Filter extends Jq
- sealed trait Jq extends AnyRef
- case class JqException(msg: String) extends Exception with Product with Serializable
- case class JqParserException(error: Error) extends Exception with Product with Serializable
-
class
PipedCompiledJq[F[_]] extends CompiledJq[F]
Represents a sequence of piped compiled jq queries, applying every query to the result of the previous one.
- sealed trait SimpleFilter extends Filter