Spaces:
Running
Running
Commit
·
e3bcacf
1
Parent(s):
662415d
docs(applicatives): add this notebook to course's README
Browse files
functional_programming/README.md
CHANGED
@@ -50,9 +50,10 @@ to a notebook's URL:
|
|
50 |
Check [here](https://github.com/marimo-team/learn/issues/51) for current series
|
51 |
structure.
|
52 |
|
53 |
-
| Notebook
|
54 |
-
|
55 |
-
| [05.
|
|
|
56 |
|
57 |
**Authors.**
|
58 |
|
|
|
50 |
Check [here](https://github.com/marimo-team/learn/issues/51) for current series
|
51 |
structure.
|
52 |
|
53 |
+
| Notebook | Title | Description | Key Concepts | Prerequisites |
|
54 |
+
|----------|-------|-------------|--------------|---------------|
|
55 |
+
| [05. Functors](https://github.com/marimo-team/learn/blob/main/Functional_programming/05_functors.py) | Category and Functors | Learn why `len` is a _Functor_ from `list concatenation` to `integer addition`, how to _lift_ an ordinary function into a _computation context_, and how to write an _adapter_ between two categories. | Categories, Functors, Function lifting, Context mapping | Basic Python, Functions |
|
56 |
+
| [06. Applicatives](https://github.com/marimo-team/learn/blob/main/Functional_programming/06_applicatives.py) | Applicative programming with effects | Learn how to apply functions within a context, combining multiple effects in a pure way. Learn about the `pure` and `apply` operations that make applicatives powerful for handling multiple computations. | Applicative Functors, Pure, Apply, Effectful programming | Functors |
|
57 |
|
58 |
**Authors.**
|
59 |
|