(no title)
simondw | 1 year ago
Strictly speaking, I think providing "map" just makes it functorial. Monadic would need a flatmap. (In addition to the other functor and monad requirements, of course.)
simondw | 1 year ago
Strictly speaking, I think providing "map" just makes it functorial. Monadic would need a flatmap. (In addition to the other functor and monad requirements, of course.)
the_gipsy|1 year ago
For example, the Option and Result type both have functions like "map", they do the same thing just on different types. They're not quite generic in that sense, but on a high level they seem so.
Another example are reactive libraries. Everything is pegged into some common operations like map, take, and so on.
hardwaresofton|1 year ago
I was unsure that bind was the same as flatmap but it looks like it is.
tubthumper8|1 year ago