∀
∧
∨
⊕
∪
⋘
Example Functors
mconcat [[0,1,2], [3], [], [4,5]] = [0, 1, 2, 3, 4, 5] mconcat ["hi", " ", "there", " ", "folks"] = "hi there folks" mconcat [0, 1, 2, 4, 5] = 12 mconcat [{a, b}, {}, {c, d}] = {a, b, c, d}
⇒