aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/control/maybe.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/control/maybe.lux')
-rw-r--r--stdlib/source/library/lux/control/maybe.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/library/lux/control/maybe.lux b/stdlib/source/library/lux/control/maybe.lux
index d9c15e307..ecf814d21 100644
--- a/stdlib/source/library/lux/control/maybe.lux
+++ b/stdlib/source/library/lux/control/maybe.lux
@@ -44,7 +44,7 @@
(implementation: .public apply
(Apply Maybe)
- (def: &functor ..functor)
+ (def: functor ..functor)
(def: (on fa ff)
(case [ff fa]
@@ -57,7 +57,7 @@
(implementation: .public monad
(Monad Maybe)
- (def: &functor ..functor)
+ (def: functor ..functor)
(def: (in x)
{.#Some x})
@@ -88,8 +88,8 @@
(implementation: .public (hash super)
(All (_ a) (-> (Hash a) (Hash (Maybe a))))
- (def: &equivalence
- (..equivalence (# super &equivalence)))
+ (def: equivalence
+ (..equivalence (# super equivalence)))
(def: (hash value)
(case value
@@ -102,8 +102,8 @@
(implementation: .public (with monad)
(All (_ M) (-> (Monad M) (Monad (All (_ a) (M (Maybe a))))))
- (def: &functor
- (functor.composite (the monad.&functor monad)
+ (def: functor
+ (functor.composite (the monad.functor monad)
..functor))
(def: in