Fixity

sealed trait Fixity

Denotes the fixity and associativity of an operator. Importantly, it also specifies the type of the of the operations themselves. For non-monolithic structures this is described by fixity.GOp, subtyped structures fixity.SOp, and for monolithic structures fixity.Op.

Since:

2.2.0

class Object
trait Matchable
class Any
object InfixL.type
object InfixR.type
object NonAssoc.type
object Postfix.type
object Prefix.type

Type members

Types

type GOp[-A, B]
type Op[A] = GOp[A, A]
type SOp[A, B >: A] <: GOp[A, B]