fp-ts
fp-ts copied to clipboard
feat(Apply/ap): make total overloads `F: 0,1,2,2C,3,3C,4` to `G: 1,2,2C,3,3C,4`
There are some overloads missing that I needed in in my projects, and figured we may as well add all the overloads for the functions.
Questions:
- What is preferred, A => B or A1 => A2? I prefer the latter because there's no good standard on letters after Q.
- Could we do A1 instead of A? I've been using vim search and replace and it's much easier when they all have numbers.
@gcanti Could I get a rerun on this one?
@gcanti Please review when you get the chance, it ran.
What is preferred, A => B or A1 => A2?
For consistency with all the other signatures I'd keep A => B
What is preferred, A => B or A1 => A2?
For consistency with all the other signatures I'd keep
A => B
@gcanti I've used the Functor module as the reference for the syntax.