Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in functional-programming

What's the proper way of passing named functions to Javascript's higher-order functions?

How can atomicModifyIORef cause leaks? And why does atomicModifyIORef' solve the problem?

Functional C++23 when computing the rows in Pascal triangle

In functional languages, how is the compiler able to translate non-tail recursion into loops to avoid stack overflows (if at all)?

ImmutableJS vs Ramda or ImmutableJS + Ramda - can they be used together

preferred method to dynamically change the urwid.MainLoop widget

Haskell `palindrome = reverse >>= (==)`

Meaning of `$` when used as argument to map

How do you chain an arbitrarily long series of atomic parsers using applicatives?

In FP how do you set a reciprocal relationship?

Does JavaScript allow replacing lambda with "method references"? If not, why not? [duplicate]

What is "fix" in Haskell? And why does "fix error" print an infinite string? And why also "take 10 $ fix error" does the same too?

Functional Programming - Avoid mutable in match expression and changing int value

functional-programming f#

functional components nesting vs. props

Point-free Function Composition with Ramda.js

How to change this into a while loop in Haskell?

Can I use StateT/MaybeT/forever to eliminate explicit recursion from this IO action?

What are the trade offs while moving to functional programming?

How to apply n-times a function with map