object Tag
Copied, adapted, and minimized from Scalaz's Tag implementation. https://github.com/scalaz/scalaz/blob/v7.1.17/core/src/main/scala/scalaz/Tag.scala
- Source
- Tag.scala
- Alphabetic
- By Inheritance
- Tag
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
Value Members
-
def
apply[A, T](a: A): @@[A, T]
subst
specialized toId
.subst
specialized toId
.- Annotations
- @inline()
- To do
According to Miles, @specialized doesn't help here. Maybe manually specialize.
-
def
of[T]: TagOf[T]
Variants of
apply
,subst
, andunsubst
that require specifying the tag type but are more likely to infer the other type parameters. -
def
subst[A, F[_], T](fa: F[A]): F[@@[A, T]]
Add a tag
T
toA
. -
def
unsubst[A, F[_], T](fa: F[@@[A, T]]): F[A]
Remove the tag
T
, leavingA
. -
def
unwrap[A, T](a: @@[A, T]): A
unsubst
specialized toId
.unsubst
specialized toId
.- Annotations
- @inline()