-
-
Save ympbyc/5074503 to your computer and use it in GitHub Desktop.
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
(define (then m k) | |
(bind m (lambda (_) k))) | |
(define (state-unit a) | |
(lambda (s) `(,a ,s))) | |
(define (state-bind m k) | |
(lambda (s) | |
(let* { [r (m s)] | |
[a (car r)] | |
[s- (cadr r)] } | |
((k a) s- )))) | |
(define (state-get s) | |
`(,s ,s)) | |
(define (state-put s) | |
(lambda (_) `(() ,s))) | |
(define-syntax monad-context | |
(syntax-rules (<- @) | |
[(_ unit bind m) m] | |
[(_ unit bind @ a) (unit a)] | |
[(_ unit bind x <- m k ...) | |
(bind m (lambda (x) (monad-context unit bind k ...)))] | |
[(_ unit bind @ a k ...) | |
(bind (unit a) (lambda (_) (monad-context unit bind k ...)))] | |
[(_ unit bind m k ...) | |
(bind m (lambda (_) (monad-context unit bind k ...)))])) | |
(define state | |
(monad-context state-unit state-bind | |
x <- state-get | |
@ (display x) | |
@ (newline) | |
(state-put (* x x)) | |
x <- state-get | |
@ (display x))) | |
(state 42) | |
(use srfi-9) | |
;polymorphic >>= | |
(define-record-type <just> | |
(just a) just? | |
(a just-a)) | |
(define-record-type <nothing> | |
(nothing) nothing?) | |
(define (maybe-unit a) | |
(just a)) | |
(define-method >>= ([x <just>] f) | |
(f (just-a x))) | |
(define-method >>= ([x <nothing>] f) | |
x) | |
(define (fail) | |
(nothing)) | |
(define maybe | |
(monad-context maybe-unit >>= | |
x <- (just 52) | |
x <- (just (* x x)) | |
@ (display x))) | |
;=> just 2704 | |
(define maybe | |
(monad-context maybe-unit >>= | |
x <- (just 52) | |
x <- (just (* x x)) | |
x <- (nothing) | |
x <- (just (* x x)) | |
@ (display x))) | |
;=>nothing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment