Ne4to777

Results 4 issues of Ne4to777

I think it should be something like this: ![image](https://user-images.githubusercontent.com/7674013/141540222-7796542f-5420-4f82-88d1-b6c0b6716208.png)

Docs: `:: Future e a ~> (e -> ()) -> (a -> ()) -> ()` Code: `Future.prototype.fork = function(reject, resolve) {` ` this._fork(reject, jail(reject, resolve));` `};` Should be: `:: Future...

Fantasy Land spec: `v.ap(u.ap(a.map(f => g => x => f(g(x)))))` is equivalent to `v.ap(u).ap(a)` (composition) Implementation: `const v = Future.of(x => y => x + y)` `const u = Future.of(1)`...

To better constraining. Just a sketch to understand an idea.