Ops

parsley.expr.Ops
See theOps companion object
sealed abstract class Ops[-A, B]

This class allows for the description of a single layer of operators in the precedence tree.

Describes the operators at a specific level in the precedence tree, such that these ops consume Bs, possibly As and produce Bs: this depends on the Fixity of the operators.

Type parameters

A

the base type consumed by the operators.

B

the type produced/consumed by the operators.

Attributes

Since

2.2.0

Note

for less complex types Ops[A, A] is sufficient.

Companion
object
Source
Ops.scala
Graph
Supertypes
class Object
trait Matchable
class Any
In this article