Package

purescript-type-isequal

Repository
justinwoo/purescript-type-isequal
License
MIT
Uploaded by
justinwoo
Published on
2018-07-03T18:03:52Z

Build Status

Type equality check returning a Boolean kind. Useful for type-level programming.

Example

From tests:

isEqual
  :: forall a b result
   . IsEqual a b result
  => Proxy a
  -> Proxy b
  -> BProxy result
isEqual _ _ =  BProxy

-- this is true as Int is Int
testA :: BProxy True
testA = isEqual (Proxy :: Proxy Int) (Proxy :: Proxy Int)

-- this is false as Int is not String
testB :: BProxy False
testB = isEqual (Proxy :: Proxy Int) (Proxy :: Proxy String)
Modules
Type.IsEqual
Dependencies