Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in haskell

How to write a monad that prints "step i of N" when executing each statement in the monad?

Pure Lambda Calculus - and function

GHC package is hidden

haskell ghc

What is the difference between ix and element in the Lens library of Haskell

haskell haskell-lens

Any advantage of using type constructors in type classes?

haskell typeclass

how is this haskell expression evaluated

haskell

Why function (+) matches type (a -> b -> b)?

haskell

Generalising ($) like Control.Category generalises (.)

Cast [Int] to [Word8]

haskell casting

Pattern match is redundant

haskell pattern-matching

How does the presence of the "error" function bear on the purity of Haskell?

Are there better ways to do Map k [v] -> Maybe (Map k v)?

haskell

Confused on DataKinds extension

haskell types data-kinds

Counting elements in a tree in Haskell

Haskell sorting of an unorderable list using a proxy order

haskell sorting

Performance of lazy evaluation in Haskell when the arguments appear several times

haskell lazy-evaluation

How to use modifiers with Quickcheck (Positive in my case)

haskell quickcheck

What does '((->) a)' mean?

Where do the foldl/foldr implementations of Foldable come from for binary trees in haskell?

haskell tree fold monoids

Recursive state monad for accumulating a value while building a list?