Mercurial > urweb
annotate lib/ur/option.urs @ 2174:ce312cad5ecd
Use correct OpenSSL thread safety macros on OS X (closes #209)
Create an Autoconf test to determine if pthread_t is a pointer or scalar
type, and use the appropriate CRYPTO_THREADID_set macro based on the
result.
author | Benjamin Barenblat <bbaren at mit.edu> |
---|---|
date | Sun, 20 Sep 2015 17:46:07 -0400 |
parents | 36428d853c97 |
children |
rev | line source |
---|---|
adamc@841 | 1 datatype t = datatype Basis.option |
adamc@841 | 2 |
adam@1544 | 3 val monad : monad t |
adam@1544 | 4 |
adamc@846 | 5 val eq : a ::: Type -> eq a -> eq (t a) |
adamc@961 | 6 val ord : a ::: Type -> ord a -> ord (t a) |
adamc@846 | 7 |
adamc@944 | 8 val isNone : a ::: Type -> t a -> bool |
adamc@841 | 9 val isSome : a ::: Type -> t a -> bool |
adamc@844 | 10 |
adamc@844 | 11 val mp : a ::: Type -> b ::: Type -> (a -> b) -> t a -> t b |
adamc@846 | 12 val bind : a ::: Type -> b ::: Type -> (a -> option b) -> t a -> t b |
adamc@1068 | 13 |
adamc@1068 | 14 val get : a ::: Type -> a -> option a -> a |
mad@1831 | 15 val unsafeGet : a ::: Type -> option a -> a |