CurryInfo: base-3.4.0 / System.IO.Unsafe.identicalVar

definition: Info
 
identicalVar :: Data a => a -> a -> Bool
identicalVar x y = (prim_identicalVar $! y) $! x
demand: Info
 arguments 2 3
deterministic: Info
 deterministic operation
documentation: Info
 
Tests whether both arguments evaluate to the identical currently unbound
variable (use with care!).
For instance,

    identicalVar (id x) (fst (x,1))  where x free

evaluates to `True`, whereas

    identicalVar x y  where x,y free

and

    let x=1 in identicalVar x x

evaluate to `False`
failfree: Info
 (_, _, _)
indeterministic: Info
 might be indeterministic
infix: Info
 no fixity defined
iotype: Info
 {(_,_,_) |-> _}
name: Info
 identicalVar
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Prelude.Data a => a -> a -> Prelude.Bool
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms