0e1fc56e27
This library defines an existential type Some. data Some f where Some :: f a -> Some f in few variants, and utilities to work with it. If you are unsure which variant to use, use the one in Data.Some module.
8 lines
215 B
Text
8 lines
215 B
Text
This library defines an existential type Some.
|
|
|
|
data Some f where
|
|
Some :: f a -> Some f
|
|
|
|
in few variants, and utilities to work with it.
|
|
|
|
If you are unsure which variant to use, use the one in Data.Some module.
|