Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in haskell

Using case for a multi-way if

haskell coding-style

Killing a Haskell binary

unix haskell

Xmonad toggle fullscreen / xmobar

haskell xmonad xmobar

Should I prefer MonadUnliftIO or MonadMask for bracketting like functions?

What general structure does this type have?

Is there something like `map2 :: (i -> a) -> (i -> b) -> [i] -> [(a,b)]`?

haskell arrows

How to unpack a haskell existential type?

haskell types

What's the way to determine if an Int is a perfect square in Haskell?

algorithm haskell sqrt

Catamorphism and tree-traversing in Haskell

Haskell pattern match on type

haskell

Removing syntactic sugar: List comprehension in Haskell

Haskell, understanding a solution for euler #3

haskell

Comparing Haskell and Scala Bind/Flatmap Examples

scala haskell

Which event-driven applications are implemented in Haskell?

Optimizing Haskell code

Defining variables inside a function Haskell

haskell

How to tell QuickCheck to generate only valid list indices for a parameter?

haskell quickcheck

Laziness/strictness between data and newtype

Why is there only one non-strict function from Int to Int?

Haskell: converting a list of (a, b) key-value pairs (with possibly repeated keys) to a list of (a, [b]) grouped by key

haskell key-value