-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b45b263
commit 62f9a42
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
module Stdlib.Trait.Monad; | ||
|
||
import Stdlib.Data.Fixity open; | ||
import Stdlib.Function open; | ||
import Stdlib.Data.Bool.Base open; | ||
import Stdlib.Data.Nat.Base open; | ||
import Stdlib.Data.List.Base open; | ||
import Stdlib.Data.Unit.Base open; | ||
import Stdlib.Trait.Functor open; | ||
import Stdlib.Trait.Applicative open; | ||
import Stdlib.Trait.Foldable.Polymorphic open; | ||
import Stdlib.Data.Unit.Base open; | ||
|
||
trait | ||
type Monad (m : Type -> Type) := | ||
mkMonad { | ||
{{applicative}} : Applicative m; | ||
bind : {A B : Type} -> m A -> (A -> m B) -> m B | ||
}; | ||
|
||
open Monad public; | ||
|
||
syntax operator >>= seq; | ||
>>= {A B} {f : Type -> Type} {{Monad f}} (x : f A) (g : A -> f B) : f B := bind x g; |