Functional Programming - Simple Explaining of Keyword
1. Functor -> Mappable 2. Currying -> Currying 3. Applicative -> Applicative 4. Monad -> Chainable 5. Monoid -> Aggregatable 6. Catamorphism -...
1. Functor -> Mappable 2. Currying -> Currying 3. Applicative -> Applicative 4. Monad -> Chainable 5. Monoid -> Aggregatable 6. Catamorphism -...
Monad is a binding function to connect two functions where are different types between returning value and input argument. So Monad will allow to compose two...
1. Closure: Two same type pair operation results a new result with same type. 2. Associative: Doesn't matter or operation order wit a pair. 3. Identity: Ther...
MC commands ----- Esc ----- Quick change directory: Esc + c Quick change directory history: Esc + c and then Esc + h Quick change directory previous entry: E...
Combines the following concept. 1. Functor - Type constructor. - Value lifting. - class Functor f where fmap :: (a -> b) -> (f a -> f b) 2. Bi...