OrderingParser

io.getquill.parser.OrderingParser
class OrderingParser(val rootParse: Parser)(using x$2: Quotes, x$3: TranspileConfig) extends Parser with PatternMatchingValues

Attributes

Graph
Supertypes
trait Parser
class Object
trait Matchable
class Any

Members list

Concise view

Type members

Inherited classlikes

object InferQuat

Attributes

Inherited from:
QuatMakingBase
Graph
Supertypes
class Object
trait Matchable
class Any

Attributes

Inherited from:
PatternMatchingValues
Graph
Supertypes
trait Enum
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Known subtypes
case class PatMatchClause(body: Ast, guard: Ast)

Attributes

Inherited from:
PatternMatchingValues
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Attributes

Inherited from:
PatternMatchingValues
Graph
Supertypes
class Object
trait Matchable
class Any
object ValDefTerm

Attributes

Inherited from:
PatternMatchingValues
Graph
Supertypes
class Object
trait Matchable
class Any

Value members

Concrete methods

def attempt: History ?=> PartialFunction[Expr[_], Ordering]

Inherited methods

Attributes

Inherited from:
QuatMakingBase
def apply(input: Expr[_])(using History): Ast

Attributes

Inherited from:
Parser
protected def betaReduceTupleFields(using Quotes, History, TranspileConfig)(tupleTree: Term, fieldsTree: Tree, messageExpr: Option[Term])(bodyTree: Term): Ast

Beta-reduces out tuple members that have been pattern matched to their corresponding components For example: given: ptups := people.map(p => (p.name, p.age)) ptups.map { case (name, age) => fun(name, age) } becomes reduced to: ptups.map { x => fun(x.name, x.age) }

Beta-reduces out tuple members that have been pattern matched to their corresponding components For example: given: ptups := people.map(p => (p.name, p.age)) ptups.map { case (name, age) => fun(name, age) } becomes reduced to: ptups.map { x => fun(x.name, x.age) }

Attributes

Inherited from:
PatternMatchingValues
override def existsEncoderFor(using Quotes)(tpe: TypeRepr): Boolean

Attributes

Definition Classes
Inherited from:
QuatMaking

Concrete fields