Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in haskell

Why can classes be used as type parameters and what for?

haskell typeclass

How do I write QuickCheck tests that don't mimic implementation of the function?

Strange Haskell expression with type Num ([Char] -> t) => t

How can I reduce syntactic clutter when tagging a polymorphic tree in Haskell?

haskell pattern-matching

Restrictions of unboxed types

good way to convert between ad-hoc polymorphic functions and parametric polymorphic ones

Only generate positive integers with QuickCheck

haskell testing quickcheck

What is the use of Applicative/Monad instances for Sum and Product?

haskell typeclass

Type Family as Argument to Type Synonym

Haskell FFI: Calling FunPtrs

c haskell ffi

How to customize Readline keybindings of GHCi?

haskell readline ghc

How would you write this Clojure snippet in Ruby and/or Haskell?

Attoparsec Iteratee

haskell iterate attoparsec

Haskell style memoization in Java

java haskell memoization

Analyzing slow performance of a Haskell program

Convert string of whitespace separated numbers in a string into integers and place them in variables

haskell

How can I avoid writing boilerplate code for functions performing pattern matching?

haskell

NoMonomorphismRestriction helps preserve sharing?

Deriving instances with TypeFamilies

haskell types type-families

How do I implement an Applicative instance for a parser without assuming Monad?

parsing haskell applicative