Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in haskell

sqrt, perfect squares and floating point errors

c haskell floating-point

Can't make String an instance of a class in Haskell

class haskell

Parse Array in nested JSON with Aeson

haskell aeson

Triple Accessing Element

haskell

Converting Monad notation to Arrow notation

haskell monads arrows

How do you hide an operator when importing?

haskell

Similar code (for exponentially weighted deviation) is slower in Haskell than in Python

Is it possible to take a list of functions and return a function which is their composite

haskell

What is the difference between type class dependence in haskell and sub typing in OOP?

How to simplify the error handling in (IO (Either a b))

haskell

What is a natural transformation in haskell?

haskell

Haskell function composition question

haskell

Is do-notation specific to "base:GHC.Base.Monad"?

haskell monads ghc

When sharing an IORef, is it safe to read with readIORef as long as I'm writing with atomicModifyIORef?

haskell thread-safety ioref

Setting argv[0] in Haskell?

haskell ubuntu argv ps

Is there a way to get the type of an exception in Haskell?

haskell

Ensuring files are closed promptly

file haskell io strict

Haskell: How can I define a type class for sets?

haskell set typeclass

What is the most efficient implementation of arrays with functional updates?

How do I define a postfix operator in Haskell?

haskell operators