Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in haskell

Checking whether the list is ordered according to the function

haskell

haskell-stack command with GHC option

haskell haskell-stack

Avoiding build dependency on QuickCheck when declaring an Arbitrary instance

Functions to Polymorphic data types

Functor instance for (newtype Mu f = InF {outF :: f (Mu f)})

haskell functor

What is the idiomatic way to build functions over newtypes ("wrapped types") in Haskell?

haskell

Applying lifted functions to tuples (of arbitrary length) in Haskell

haskell tuples functor lifting

Data constructor error when implementing state monad?

haskell monads

How to properly use guards in Haskell?

list function haskell

Why can't I pattern match on a type family?

haskell types

Haskell evaluating properties of a data type only once when first accessed?

Modify the parameter of a function only once

haskell

Pass a lens into a function

haskell haskell-lens

Generic function that accepts two monadic values and returns a single monadic value

scala haskell generics monads

What does the 'outermost part' of expression mean in Haskell

haskell

Identity of the "accumulating parameter" of the foldr function

haskell

stack install executable to a custom location

haskell haskell-stack

What does "(_:_:_)" mean in Haskell (non-exhaustive pattern matching error from GHCI)?

How to get element's index in list when using foldl

haskell

Generating functions from a recursive type

haskell