- unsafeGetTagBits :: a -> Word
- unsafeIsEvaluated :: a -> Bool
Determining if a closure is evaluated
unsafeGetTagBits :: a -> WordSource
Inspect the dynamic pointer tagging bits of a closure. This is an impure function that relies on GHC internals and may falsely return 0, but should never give the wrong tag number if it returns a non-0 value.
unsafeIsEvaluated :: a -> BoolSource
Returns a guess as to whether or not a value has been evaluated. This is an impure function that relies on GHC internals and will return false negatives, but no false positives. This is unsafe as the value of this function will vary (from False to True) over the course of otherwise pure invocations!