Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in haskell

Embedding higher kinded types (monads!) into the untyped lambda calculus

In which languages is function abstraction not primitive

Pointfree Composition with Multiple Variables

Implementing take using foldr

haskell fold take

Haskell: Trapped in IO monad

hi :: (b -> c) -> (a -> b) -> (a -> c) in Haskell

Why is `++` for Haskell List implemented recursively and costs O(n) time?

Range checking in Haskell's case?

haskell case

ugly doubles - why 2.9000000000000004 instead of 2.9? [duplicate]

haskell

Short way to write (\(x, y) -> (f x, g y))

haskell tuples

Haskell Error: parse error on input `='

Does there exist something like (xs:x)

haskell

Haskell: foldr vs foldr1

haskell fold

Does Julia have an operator similar to Haskell's dollar sign?

haskell julia

How can I abstract a common Haskell recursive applicative functor pattern

Counters are initialized every time?

haskell

Haskell: Want a better way of doing: value == x || value == y ||

haskell idioms

. versus $ in haskell [duplicate]

haskell

What type of scope does Haskell use?

haskell scope alias

Is my rewritten foldl function optimised?