ParsingWrapper

trait ParsingWrapper[-R] extends SimpleWrapper[R, ParsingError, Document, String]

Wrapper for the query parsing stage. Wraps a function from a query String to a ZIO[R, ParsingError, Document].

Wrapper for the query parsing stage. Wraps a function from a query String to a ZIO[R, ParsingError, Document].

trait Wrapper[R]
class Object
trait Matchable
class Any

Value members

Inherited methods

def wrap[R1 <: R](f: String => ZIO[R1, ParsingError, Document]): String => ZIO[R1, ParsingError, Document]
Inherited from
SimpleWrapper
def |+|[R1 <: R](that: Wrapper[R1]): Wrapper[R1]
Inherited from
Wrapper