final class FromLens[S, T] extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- FromLens
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
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 prepareF[F[_]](modify: StateSnapshotF.ModFn[F, S])(implicit arg0: Sync[F]): 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 prepareTupledF[F[_]](modify: StateSnapshotF.TupledModFn[F, S])(implicit arg0: Sync[F]): FromLensSetStateFn[S, T]
This is meant to be called once and reused so that the setState callback stays the same.
- def prepareVia[F[_], A[_], I](i: I)(implicit t: Write[I, F, A, S]): FromLensSetStateFn[S, T]
This is meant to be called once and reused so that the setState callback stays the same.
- def prepareViaCallback[F[_], I, G[_], A[_]](cb: F[I])(implicit t: (I) => ModState[G, A, S], F: Sync[F], G: Sync[G]): FromLensSetStateFn[S, T]
- def prepareViaProps[F[_], A1[_], P, S1, I, G[_], A2[_]](arg0: Mounted[F, A1, P, S1])(f: (P) => I)(implicit t: (I) => ModState[G, A2, S], F: Sync[F], G: Sync[G]): FromLensSetStateFn[S, T]
- 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]