Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in haskell

Why does `(\x y -> x + y) @Integer` fails, but `(+) @Integer` succeeds?

haskell types

What does tinfo6 stands for?

Split a list into non-empty sub-lists in Haskell

haskell

Is the distinction between foldr and foldl important for maps and sets?

haskell fold unordered

Adding maybeness to a Haskell data type (with record syntax)

haskell maybe

Include sprites into binary -- Gloss library

haskell gloss

Haskell instance of typeclass definition with type constructor

Is it possible to store a GADT inside a State monad transformer?

haskell

Avoiding repeated instance declarations in Haskell

When parsing JSON with Aeson, why is Maybe treated differently when it's in a type parameter?

haskell aeson

Finding equivalent program to proof in typed lambda calculus

Learning Haskell: where-clause variable x, where does it come from?

haskell

Equivalent of passing `-p zlib` argument to `nix-shell` in `shell.nix`

Having trouble creating a function that can be multiple types

haskell

How to construct fmap for a newtype that houses functions

haskell functor newtype

Haskell Indentation issue

haskell indentation

Modular run-length encoding

Construct a dependent type out of a list in Haskell

haskell singleton

How can I refactor duplicate field names in Haskell data types?

haskell

When should one use applicatives over monads?