diff options
author | Munyoki Kilyungi | 2022-09-25 22:09:06 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2022-09-25 22:09:06 +0300 |
commit | 03e406922683ed6e90c22a822967f245f49da6b8 (patch) | |
tree | 93a874c5a15f0c828fd719782b103d22b1a62332 /topics/maybe-monad.gmi | |
parent | 40e70f16479ef246639b240d4b0a1e751be191b1 (diff) | |
download | gn-gemtext-03e406922683ed6e90c22a822967f245f49da6b8.tar.gz |
Add useful resources on learning monads
* topics/maybe-monad.gmi (Useful Resources): Add new section.
Diffstat (limited to 'topics/maybe-monad.gmi')
-rw-r--r-- | topics/maybe-monad.gmi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/topics/maybe-monad.gmi b/topics/maybe-monad.gmi index 5ec582c..7f2afa9 100644 --- a/topics/maybe-monad.gmi +++ b/topics/maybe-monad.gmi @@ -50,3 +50,11 @@ with conn.cursor(utility.monads.MonadicDictCursor) as cursor: for row in cursor.fetchall(): row["foo"].bind(print) ``` + +## Useful Resources + +=> https://www.miguelfarrajota.com/2021/06/monads-in-python-with-pymonad/ + +=> https://jasondelaat.github.io/pymonad_docs/explanations/whats-a-monad.html + +=> https://simon.tournier.info/posts/2021-02-03-monad.html |