Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in haskell

What's the difference between StateT s (ExceptT e m) and ExceptT e (StateT s m)?

Are mapM and forM interchangeable?

haskell

Can Nullable be used as a functor in C#?

How to avoid quadratic explosion of typeclass instances?

Is `x >> pure y` equivalent to `liftM (const y) x`

Haskell: Check if integer, or check type of variable

haskell

Type-safe matrix multiplication

How to avoid OOP deep class hierarchies when switching to Haskell?

haskell

Using Overloaded Strings

Efficient table for Dynamic Programming in Haskell

Monadic expressions in conditionals - GHC compiles, cabal refuses

haskell cabal

Why aren't FingerTrees used enough to have a stable implementation?

Modular Program Design - Combining Monad Transformers in Monad Agnostic functions

Monoidal Functor is Applicative but where is the Monoid typeclass in the definition of Applicative?

haskell applicative

Are codatatypes really terminal algebras?

Mutability in functional programming

Showing two different fibonacci functions are equivalent

Name of type pattern: R a b = Q (a -> (R a b,b))

Calculating work done by f x = (x,x)

Theoretically, is this a valid comonad instance for a list?

list haskell comonad