Search Results

0
votes

Are threre any ORM tools for Haskell?

Have you looked through the database mapping and access packages at http://hackage.haskell.org/packag …
3
votes

Which Haskell package contains given module.

http://www.haskell.org/ghc/docs/latest/html/users_guide/packages.html ghc-pkg find-module …
13
votes

Haskell Syntax case expression in a do block

return is an (overloaded) function, and it's not expecting its first argument to be a keyword. You can either parenthesize: module Main where import System(getArgs) main = do …
2
votes

How do you make a generic memoize function in Haskell?

This largely follows http://www.haskell.org/haskellwiki/Memoization. You want a function of type (a -> b). If it …