aboutsummaryrefslogtreecommitdiff
path: root/documentation/book/the_lux_programming_language/chapter_8.md
blob: 8c262b3555f78ff2196e1780ccec041841f64527 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
# Chapter 8: Functors and monads

_Where I will try to explain something really confusing, and you'll pretend you understand to avoid hurting my feelings._

---

OK. It's time to get serious.

The following topics are known to be troublesome to teach, so I can only promise you that I will try really, really hard not too say something confusing (or stupid).

## Functors

Functors and monads are both mathematical concepts that are prevalent in **Category Theory**.

You may have heard of it before.

It's a branch of abstract mathematics that many are drawing inspiration from when developing new tools and techniques for functional programming.

But I will not go down the route of explaining things to you from a mathematical perspective... as I'm not confident that's going to work.

---

Imagine that you have some data (maybe an `Int`, or a `Text`).

You can work with that data: you can pass it around, apply functions to it, print it to the console/terminal, or pattern-match against it.

Well, imagine a `Functor` as some kind of wrapper on your data.

You can still access what's inside, but the wrapper itself offers special superpowers, and each wrapper is different.

For instance, there's one wrapper that allows us to have (or not to have) our data.

_Schrodinger's wrapper_ (although most people prefer to call it `Maybe`).

That wrapper happens to be a type, as **all** `Functor` wrappers are types.

But not just any type. You see, functors have requirements.

```clojure
(type: .public (Functor f)
  (Interface
   (: (All (_ a b)
        (-> (-> a b) (f a) (f b)))
      each)))
```

This is the `Functor` interface, from `library/lux/abstract/functor`.

As you can see, it only has a single member: the `each` function.

The parameter type `f` is very special, because instead of being a simple type (like `Int` or `Text`), it's actually a parameterized type (with a single parameter).

That explains why it's being used the way it is in the type of `each`.

Not every parameterized type can be a `Functor`, but if the type is something that you can open to work with its inner elements, then it becomes a good candidate.

	And you would be surprised how many things fit that requirement.

Remember that `Maybe` type we talked about?

Let's see how it plays with `Functor`.

```clojure
(type: .public (Maybe a)
  {.#None}
  {.#Some a})
```

We've seen `Maybe` before, but now we can analyse out how it's implemented.

	By the way, it lives in the `library/lux` module, so you don't need to import anything.

Here is its `Functor` implementation.

```clojure
(implementation: .public functor
  (Functor Maybe)
  
  (def (each f ma)
    (case ma
      {.#None}   {.#None}
      {.#Some a} {.#Some (f a)})))

... This one lives in the library/lux/data/maybe module, though.
```

We'll know how everything fits if we fill in the blanks for `each`'s type:

```clojure
(All (_ a b)
  (-> (-> a b) (Maybe a) (Maybe b))
```

So, the job of `each` here is to take a `Maybe` containing some `a` value, and somehow transform it into a `b`, without escaping the `Maybe`.

By looking at the `Functor` implementation, we can see how this works out.

We can actually pattern-match against the entire input and handle the different cases, using the given function to transform our `a` into a `b`.

Not that hard.

Oh, and remember our `iterate_list` function from [chapter 5](chapter_5.md)?

Turns out, that's just the `Functor` implementation from `library/lux/data/collection/list`:

```clojure
(implementation: .public functor
  (Functor List)
  
  (def (each f ma)
    (case ma
      {.#End}        {.#End}
      {.#Item a ma'} {.#Item (f a) (each f ma')})))
```

Not bad.

In the case of `List`, the wrapper superpower it provides is the capacity to handle multiple values as a group.

This can be used for some really cool techniques; like implementing non-deterministic computations by treating every list item as a branching value (but let's not go down that rabbit-hole for now).

The power of `Functor`s is that they allow you to decorate your types with extra functionality.

You can still access the inner data and the `each` function will take advantage of the wrapper's properties to give you that extra power you want.

You can implement things like stateful computations, error-handling, logging, I/O, asynchronous concurrency and many other crazy things with the help of `Functor`s.

However, to make them really easy to use, you might want to add some extra functionality.

## Monads

One thing you may have noticed about the `Functor` interface is that you have a way to operate on functorial values, but you don't have any _standardized_ means of creating them.

I mean, you can use the `list` and `list&` macros to create lists and the `.#None` and `.#Some` tags for `Maybe`, but there is no unified way for creating **any** functorial value.

Well, let me introduce you to `Monad`:

```clojure
(type: .public (Monad m)
  (Interface
   (: (Functor m)
      &functor)
   (: (All (_ a)
        (-> a (m a)))
      in)
   (: (All (_ a)
        (-> (m (m a)) (m a)))
      conjoint)))
```

This interface extends `Functor` with both the capacity to wrap a normal value `in` a functorial structure, and to join 2 layers of functorial structure into a single, `conjoint` one.

Sweet!

Wrapping makes working with functors so much easier because you don't need to memorize a bunch of tags, macros or functions in order to create the structures that you need.

And being able to join layers of functorial structure allows you to write dynamic computations which make use of the functorial structure and that can depend on the value of previous functorial computations.

To get a taste for it, let's check out another functorial type.

Remember what I said about error-handling?

```clojure
(type: .public (Try a)
  (Variant
   {#Failure Text}
   {#Success a}))
```

This type expresses errors as `Text` values (and it lives in the `library/lux/control/try` module).

Here are the relevant `Functor` and `Monad` implementations:

```clojure
(implementation: .public functor
  (Functor Try)
  
  (def (each f ma)
    (case ma
      {#Failure msg}
      {#Failure msg}
      
      {#Success datum}
      {#Success (f datum)})))

(implementation: .public monad
  (Monad Try)
  
  (def &functor ..functor)

  (def (in a)
    {#Success a})

  (def (join mma)
    (case mma
      {#Failure msg}
      {#Failure msg}
      
      {#Success ma}
      ma)))
```

If you listen to functional programmers, you'll likely get the impression that the invention of monads rivals the invention of the wheel.

It is this incredibly powerful and fundamental abstraction for a lot of functional programs.

The thing about `Monad` is that, with it, you can use `each` functions that also generate wrapped values (and take advantage of their special properties), and then you can collapse/merge/combine those values into a _"conjoint"_ value by using the `conjoint` function.

Let's see that in action:

```clojure
(.using
 [library
   [lux "*"
     [data
       [collection
         ["[0]" list]]]]])

(open: list.monad)

(def foo
  (|> (list 1 2 3 4)
      (each (list.repeated 3))
      conjoint))

... The value of 'foo' is:
(list 1 1 1 2 2 2 3 3 3 4 4 4)
```

_It's magic!_

Not really. It's just the `Monad` for `List`:

```clojure
(implementation: .public functor
  (Functor List)
  
  (def (each f ma)
    (case ma
      {.#End}
      {.#End}
      
      {.#Item a ma'}
      {.#Item (f a) (each f ma')})))

(implementation: .public mix
  (Mix List)
  
  (def (mix f init xs)
    (case xs
      {.#End}
      init

      {.#Item x xs'}
      (mix f (f x init) xs'))))

(implementation: .public monoid
  (All (_ a) (Monoid (List a)))
  
  (def identity
    {.#End})
    
  (def (composite xs ys)
    (case xs
      {.#End}
      ys
      
      {.#Item x xs'}
      {.#Item x (compose xs' ys)})))

(open: "[0]" ..monoid)

(implementation: .public monad
  (Monad List)
  
  (def &functor ..functor)

  (def (in a)
    {.#Item a {.#End}})

  (def (conjoint list_of_lists)
    (mix composite
         identity
         (reversed list_of_lists))))

... The mix function is for doing incremental iterative computations.
... Here, we're using it to build the total output list by composing/concatenating all the input lists in our `list_of_lists`.
```

`Monad`s are incredibly powerful, since being able to use the special power of our `Functor` while applying functions to `each` list item allows us to layer that power in complex ways.

But... you're probably thinking that writing a bunch of `each`s followed by `conjoint`s is a very tedious process. And, you're right!

If functional programmers had to subject themselves to that kind of tedium all the time, they'd probably not be so excited about monads.

Time for the VIP treatment.

## The `do` macro

These macros always show up at the right time to saves us from our hurdles!

```clojure
(.using
 [library
   [lux "*"
     [data
       ["[0]" maybe]]]])

... Macro for easy concatenation of monadic operations.
(do maybe.monad
  [x (f0 123)
   .let [y (f1 x)] ... .let enables you to use full-featured let-expressions within do
   z (f2 y)]
  (in (f3 z)))
```

The `do` macro allows us to write monadic code with great ease (it's almost as if we're just making `let` bindings).

Just tell it which `Monad` implementation you want, and it will write all the steps in your computation piece by piece using `each` and `conjoint` without you having to waste your time with all the boilerplate.

Finally, whatever you write as the body of the `do`, it must result in a functorial/monadic value (in this case, a `Maybe` value).

**Remember**: A `conjoint` value may collapse/merge/combine layers of the `Functor`, but it never escapes it.

---

`Functor`s and `Monad`s have a bad reputation for being difficult to understand, but hopefully I didn't botch this explanation _too much_.

Personally, I think the best way to understand `Functor`s and `Monad`s is to read different implementations of them for various types (and maybe write a few of your own).

	For that, feel free to peruse [the Lux Standard Library](https://github.com/LuxLang/lux/tree/master/documentation/library/standard) at your leisure.

This is the sort of thing that you need to learn by intuition and kind of _get the feel for_.

Hopefully, you'll be able to get a feel for them in the next chapters, because we're going to be exploring a lot of monads from here on.

So, buckle-up, cowboy. This ride is about to get bumpy.

See you in [the next chapter](chapter_9.md)!