I know that in FP there are sometimes multiple terms to say one thing. So when I started to learn fp-ts API (https://github.com/gcanti/fp-ts/blob/master/docs/index.md) I couldn't find Maybe monad. So maybe there is another name for it?
Asked
Active
Viewed 381 times
1
-
1It's `Option` there – zerkms Aug 31 '18 at 00:47
-
Wow. 17 seconds. Good :-) Thank you! – Nurbol Alpysbayev Aug 31 '18 at 00:47
1 Answers
3
What is the other name for Maybe monad?
Option
: https://github.com/gcanti/fp-ts/blob/master/docs/Option.md

basarat
- 261,912
- 58
- 460
- 511
-
1
-
1Cheers. Primarily `Option` cause of .Net developers being familiar with it from F# : https://learn.microsoft.com/en-us/dotnet/fsharp/language-reference/options – basarat Aug 31 '18 at 00:49