trait GetF[F[_], A] extends AnyRef
Ordering
- Alphabetic
- By Inheritance
Inherited
- GetF
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def F: Sync[F]
- Attributes
- protected[Ref]
- abstract def get: F[Option[A]]
- abstract def map[B](f: (A) => B): GetF[F, B]
- abstract def mapOption[B](f: (A) => Option[B]): GetF[F, B]
- abstract def narrowOption[B <: A](implicit ct: ClassTag[B]): GetF[F, B]
- abstract def widen[B >: A]: GetF[F, B]
- abstract def withEffect[G[_]](implicit G: Sync[G]): GetF[G, A]
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def foreach(f: (A) => Unit): F[Unit]
- final def foreachCB(f: (A) => F[Unit]): F[Unit]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def unsafeGet(): A
Get the reference immediately.
Get the reference immediately.
ONLY USE THIS IN UNIT TESTS. DO NOT USE THIS IN PRODUCTION CODE.
Unsafe for two reasons:
1. It reads an underlying variable. (impurity) 2. It throws an exception when the ref is empty (partiality)
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()