ViewOptF

abstract
class ViewOptF[F[_], A](val get: Option[A], val modCB: (A => A, Option[A] => F[Unit]) => F[Unit])(implicit evidence$3: Monad[F]) extends ViewOps[F, Option, A]
class ViewOps[F, Option, A]
class Object
trait Matchable
class Any
ViewOptF[F, A]

Value members

Concrete methods

def as[B](iso: Iso[A, B]): ViewOptF[F, B]
def asList: ViewListF[F, A]
override
def toString(): String
Definition Classes
Any
def widen[B >: A]: ViewOptF[F, B]
def withOnMod(f: Option[A] => F[Unit]): ViewOptF[F, A]
def zoom[B](getB: A => B)(modB: B => B => A => A): ViewOptF[F, B]
def zoom[B](lens: Lens[A, B]): ViewOptF[F, B]
def zoom[B](optional: Optional[A, B]): ViewOptF[F, B]
def zoom[B](prism: Prism[A, B]): ViewOptF[F, B]
def zoom[B](traversal: Traversal[A, B]): ViewListF[F, B]
def zoomList[B](getB: A => List[B])(modB: B => B => A => A): ViewListF[F, B]
def zoomOpt[B](getB: A => Option[B])(modB: B => B => A => A): ViewOptF[F, B]

Inherited methods

def modAndGet(f: A => A)(implicit F: Async[F]): F[Option[A]]
Inherited from
ViewOps

Concrete fields

val get: Option[A]
val modCB: (A => A, Option[A] => F[Unit]) => F[Unit]

Inherited fields

val mod: A => A => F[Unit]
Inherited from
ViewOps
val set: A => F[Unit]
Inherited from
ViewOps
val setCB: (A, Option[A] => F[Unit]) => F[Unit]
Inherited from
ViewOps