|
|
|
|
|
by hiker
3358 days ago
|
|
> return :: x -> (a -> x) > return x = \a -> x > > (>>=) :: (a -> x) -> (x -> (a -> y)) -> (a -> y) > m >>= f = \a -> f (m a) a >(Incidentally, these are two of the Łukasiewicz axioms for propositional calculus.) Also the K and S in SKI combinator calculus https://en.wikipedia.org/wiki/SKI_combinator_calculus |
|