implicit final class SyntaxUnsafeGet[F[_], A] extends AnyVal
- Alphabetic
- By Inheritance
- SyntaxUnsafeGet
- AnyVal
- Any
- Hide All
- Show All
- Public
- Protected
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 toString(): String
- Definition Classes
- Any
- def unsafeAllocate()(implicit F: QuasiPrimitives[F]): F[(A, () => F[Unit])]
Unsafely acquire the resource, return it and the finalizer.
Unsafely acquire the resource, return it and the finalizer. The resource will be leaked unless the finalizer is used.
This function usually only makes sense in code examples or at top-level, please use SyntaxUse#use otherwise!
- Note
will acquire the resource without an uninterruptible section
- def unsafeGet()(implicit F: QuasiPrimitives[F]): F[A]
Unsafely acquire the resource and throw away the finalizer, this will leak the resource and cause it to never be cleaned up.
Unsafely acquire the resource and throw away the finalizer, this will leak the resource and cause it to never be cleaned up.
This function usually only makes sense in code examples or at top-level, please use SyntaxUse#use otherwise!
- Note
will acquire the resource without an uninterruptible section