SInt32RulesLens

class SInt32RulesLens[UpperPB](_l: Lens[UpperPB, SInt32Rules]) extends ObjectLens[UpperPB, SInt32Rules]
class ObjectLens[UpperPB, SInt32Rules]
trait Lens[UpperPB, SInt32Rules]
class Object
trait Matchable
class Any

Value members

Concrete methods

def const: Lens[UpperPB, Int]
def gt: Lens[UpperPB, Int]
def gte: Lens[UpperPB, Int]
def in: Lens[UpperPB, Seq[Int]]
def lt: Lens[UpperPB, Int]
def lte: Lens[UpperPB, Int]
def notIn: Lens[UpperPB, Seq[Int]]
def optionalConst: Lens[UpperPB, Option[Int]]
def optionalGt: Lens[UpperPB, Option[Int]]
def optionalGte: Lens[UpperPB, Option[Int]]
def optionalLt: Lens[UpperPB, Option[Int]]
def optionalLte: Lens[UpperPB, Option[Int]]

Inherited methods

def :=(a: SInt32Rules): () => UpperPB

alias to set

alias to set

Inherited from
Lens
def compose[B](other: Lens[SInt32Rules, B]): Lens[UpperPB, B]

Composes two lenses, this enables nesting.

Composes two lenses, this enables nesting.

If our field of type A has a sub-field of type B, then given a lens for it (other: Lens[A, B]) we can create a single lens from Container to B.

Inherited from
Lens
def field[A](getter: SInt32Rules => A)(setter: (SInt32Rules, A) => SInt32Rules): Lens[UpperPB, A]

Creates a sub-lens

Creates a sub-lens

Inherited from
ObjectLens
def field[A](lens: Lens[SInt32Rules, A]): Lens[UpperPB, A]

Creates a sub-lens

Creates a sub-lens

Inherited from
ObjectLens
override def get(u: UpperPB): SInt32Rules
Definition Classes
ObjectLens -> Lens
Inherited from
ObjectLens
def modify(f: SInt32Rules => SInt32Rules): () => UpperPB

Represent an update operator (like x.y += 1 )

Represent an update operator (like x.y += 1 )

Inherited from
Lens
override def set(c: SInt32Rules): () => UpperPB
Definition Classes
ObjectLens -> Lens
Inherited from
ObjectLens
def setIfDefined(aOpt: Option[SInt32Rules]): () => UpperPB

Optional assignment.

Optional assignment.

Given a Some[A], assign the Some's value to the field. Given None, the container is unchanged.

Inherited from
Lens
def update(ms: Lens[SInt32Rules, SInt32Rules] => () => SInt32Rules*): () => UpperPB
Inherited from
ObjectLens
def zip[B](other: Lens[UpperPB, B]): Lens[UpperPB, (SInt32Rules, B)]

Given two lenses with the same origin, returns a new lens that can mutate both values represented by both lenses through a tuple.

Given two lenses with the same origin, returns a new lens that can mutate both values represented by both lenses through a tuple.

Inherited from
Lens