object RefType extends Serializable
- Source
- RefType.scala
- Alphabetic
- By Inheritance
- RefType
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- final class RefTypeOps[F[_, _], T, P] extends AnyRef
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
- def apply[F[_, _]](implicit rt: RefType[F]): RefType[F]
Returns a
RefTypefor the given typeFfrom the implicit scope. - def applyRef[FTP]: ApplyRefPartiallyApplied[FTP]
Returns a value of type
Trefined asFTPon the right if it satisfies the predicate inFTP, or an error message on the left otherwise.Returns a value of type
Trefined asFTPon the right if it satisfies the predicate inFTP, or an error message on the left otherwise.Example:
scala> import eu.timepit.refined.api.{ Refined, RefType } | import eu.timepit.refined.numeric.Positive scala> type PosInt = Int Refined Positive scala> RefType.applyRef[PosInt](10) res0: Either[String, PosInt] = Right(10)
Note: The return type is
internal.ApplyRefPartiallyApplied[FTP], which has anapplymethod on it, allowingapplyRefto be called like in the given example. - def applyRefM[FTP]: ApplyRefMPartiallyApplied[FTP]
Macro that returns a value of type
Trefined asFTPif it satisfies the predicate inFTP, or fails to compile otherwise.Macro that returns a value of type
Trefined asFTPif it satisfies the predicate inFTP, or fails to compile otherwise.Example:
scala> import eu.timepit.refined.api.{ Refined, RefType } | import eu.timepit.refined.numeric.Positive scala> type PosInt = Int Refined Positive scala> RefType.applyRefM[PosInt](10) res0: PosInt = 10
Note:
Mstands for macro.Note: The return type is
internal.ApplyRefMPartiallyApplied[FTP], which has anapplymethod on it, allowingapplyRefMto be called like in the given example. - final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws(classOf[java.lang.CloneNotSupportedException])
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_]
- 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()
- implicit val refinedRefType: RefType[Refined]
- final def synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- implicit val tagRefType: RefType[@@]
- def toString(): String
- Definition Classes
- AnyRef → Any
- 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
- @native() @throws(classOf[java.lang.InterruptedException])
- object ops