Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in haskell

Is this syntax as expressive as the do-notation?

haskell syntax do-notation

overriding default Eq definition for specific pattern

haskell

Replacing Exceptions With Either/Maybe/Option

Haskell, How could I construct a new datatype so that the value of that type is 1 or 2 or 3?

haskell

Haskell - Max number in a list

haskell

Does Ord a allow me to use "=="?

haskell typeclass

Is ST referentialy transparent?

haskell

Haskell: SortBy with multiple parameters (Birth dates)

sorting haskell

Remove duplicates of pairs in a list

list function haskell tuples

Syntax and semantics of symbol characters in Haskell

haskell

What is an elegant idiom for a lexicographic Ord instance?

haskell lexicographic

Monadic if else

haskell monads

Does Haskell re-evaluate a value when recalling a function depending on this value?

haskell

Is there a standard function like `>>`, but returning the result of the first operand?

What's the priority for function composition in Haskell?

haskell

Can I use let in guards on Haskell?

haskell

Tree or not (Haskell type understanding)

Performing algebra with newtypes based on integers Haskell

haskell algebra newtype

How do you find the list of all numbers that are multiples of only powers of 2, 3, and 5? [duplicate]

Is there any straightforward way to evaluate a recursive function breadth-first?

haskell