final class FromLens[S, T] extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- FromLens
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new FromLens(l: Lens[S, T])
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
##(): Int
- Definition Classes
- Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
prepare(modify: ModFn[S]): FromLensSetStateFn[S, T]
This is meant to be called once and reused so that the setState callback stays the same.
-
def
prepareTupled(modify: TupledModFn[S]): FromLensSetStateFn[S, T]
This is meant to be called once and reused so that the setState callback stays the same.
-
def
prepareVia[I](i: I)(implicit t: WritePure[I, S]): FromLensSetStateFn[S, T]
This is meant to be called once and reused so that the setState callback stays the same.
-
def
toString(): String
- Definition Classes
- Any
- def xmap[U](get: (T) ⇒ U)(set: (U) ⇒ T): FromLens[S, U]
- def zoom[U](get: (T) ⇒ U)(set: (U) ⇒ (T) ⇒ T): FromLens[S, U]