Questions about the Real World Haskell Book by O'Sullivan, Goerzen & Stewart

learn more… | top users | synonyms

3
votes
1answer
274 views

Haskell HDBC Elegance in F#?

I'm struck by Haskell's terseness and elegance. But I work in a .Net house, so I use F# when I can get away with it--I may be the only one of hundreds across the country who uses it. Does ADO.NET or ...
0
votes
1answer
128 views

(quick)Haskell - How to filter Results to display correctly [closed]

I have a list of movies in a Database. type Database = [Film] type Title = String type Actor = String type Cast = [Actor] type Fan = String type Fans = [Fan] type Year = Int type Period = (Year, ...
0
votes
1answer
84 views

Haskell - How to add to a list [closed]

I currently have a list of films. These fans are also coupled along with their year and fans. Like so: testDatabase :: Database testDatabase = [ ("Casino Royale", ["Daniel Craig", ...
0
votes
1answer
60 views

Haskell - testDatabase is applied to one argument but its type “database” has none. [closed]

My database should contain up to 25 of these data entries. At the moment, i only have these but I'm receiving an error message of: testDatabase is applied to one argument but its type "database" ...
0
votes
2answers
89 views

Haskell - lacks accompanying binding,

I'm currently completing a project to create a film rating system / database using Haskell. I'm trying to add the functionality that allows the user to become a fan of a film. I have: isFan :: ...
7
votes
2answers
161 views

Why can I omit the constructor when referring to newtype wrapped number types?

On page 321 of Real World Haskell There are these codes, ... {-# LANGUAGE GeneralizedNewtypeDeriving #-} newtype AInt = A { unA::Int } deriving (Show, Eq, Num) instance Monoid AInt where ...
2
votes
1answer
192 views

What software was used to write real-world haskell?

Title pretty much sums it up; I'm looking to start a book on programming and I love that approach.
28
votes
1answer
571 views

Are thread pools needed for pure Haskell code?

In Real World Haskell, Chapter 28, Software transactional memory, a concurrent web link checker is developed. It fetches all the links in a webpage and hits every once of them with a HEAD request to ...
3
votes
1answer
232 views

Haskell: Using MapReduce to search for substrings?

I'm trying to write a simple program using an existing MapReduce implementation (the one in Real World Haskell). As an example of using the framework, here is some code to count the number of words ...
0
votes
1answer
63 views

Modification of Real World Haskell program to count number of words and lines using MapReduce

I'm trying to make some simple modifications to a program from Real World Haskell Chapter 24. Here's some code that counts the number of lines in a file: import qualified Data.ByteString.Lazy.Char8 ...
0
votes
1answer
81 views

Count number of characters in Haskell MapReduce code

In Haskell code from Real World Haskell, Chapter 24, an example of using MapReduce to count the number of LINES in a file is implemented as follows: import qualified Data.ByteString.Lazy.Char8 as LB ...
3
votes
3answers
144 views

How to execute code in Real World Haskell?

Firstly - apologies. This is the first Haskell code I'm ever compiling. I'm compiling some code straight out of Real World Haskell Chapter 24. The code uses a MapReduce engine implemented in another ...
6
votes
1answer
108 views

Real World Haskell code not compiling?

I'm trying to compile some code in Real World Haskell - Chapter 24. LineCount.hs. I have not made any changes to the code. However, when I do: ghc -O2 --make -threaded LineCount.hs (as instructed ...
2
votes
1answer
154 views

About the function monad

I have some confusion with the function monad. The function monad is defined as follow: instance Monad ((->) r) where return x = \_ -> x h >>= f = \w -> f (h w) w I tried ...
11
votes
1answer
591 views

How to structure a Haskell project?

I'm currently trying to do a Haskell project using the Test Driven Development methodology. In Java, we can create a nicely structured project containing src and bin folders, then there are main and ...
1
vote
1answer
76 views

Data Type Haskell error

I declare some data type as follow: data TX_OR_TY = TX | TY data TX = X Int data TY = Y Float Now I write some function return their data type: funcTX :: TX funcTX = X 3 funcTY :: TY funcTY = Y ...
7
votes
3answers
565 views

Reader Monad Purpose

I am newbie to Haskell. I read the Reader Monad several times, but still don't understand about what is the purpose of the Reader Monad. The Reader Monad is so complex and seems to be useless. In ...
0
votes
1answer
58 views

Haskell type expression

I have two questions about Haskell type expression: Question 1 - I would like to declare a type NODE data NODE = Node String ATTR and a type ATTR contains 3 sub-type as follow: Source Bool ...
-3
votes
1answer
90 views

Read a string input

I am trying to write instance of Read class to read an input as string as follow: "1 3 - - 2 3 - - 5" Convert it into [[Maybe Int]] "-" will be translated into Nothing "3" will be ...
1
vote
2answers
91 views

the Coverage Condition fails

I have a very simple piece of code as follow: {-# LANGUAGE MultiParamTypeClasses, FunctionalDependencies, FlexibleInstances, FlexibleContexts #-} class Graph g n e | g -> n e ...
2
votes
1answer
124 views

Building a Nested Monad

I have two own data type as follow: Block a = NoValue | Value a data GraphAMT a = GraphAMT_ [[Block a]] Now, I want to make instance monads for them like instance Monad Block where return a = ...
1
vote
3answers
198 views

the equivalence between applicative functor and monad

People say monads are an extension of applicative functors, but I don't see that. Let's take an example of applicative functor: (<*>) :: f(a->b) -> f a -> f b [(+3)] <*> [2,3,4] ...
2
votes
4answers
117 views

About value in context (applied in Monad)

I have a small question about value in context. Take Just 'a', so the value in context of type Maybe in this case is 'a' Take [3], so value in context of type [a] in this case is 3 And if you apply ...
0
votes
1answer
52 views

type parameter error

I create my own type parameters as follow: data Node a = Node a data Cost = Int | Float data Edge Node Cost = Edge ((Node,Node),Cost) data Graph Edge = Graph [Edge] And get an error: Unexpected ...
0
votes
1answer
44 views

To import App.EventBus, which module need to install? [closed]

My project imports module App.EventBus : "import App.EventBus" I tried to search in hayoo, but not find it out which module needed to install.
0
votes
1answer
61 views

Cannot find out module Data.Colour

I cannot import module Data.Colour, and the error as follow: Could not find module `Data.Colour' Use -v to see a list of the files searched for. Failed, modules loaded: none. Am I missing ...
0
votes
1answer
211 views

Directed Graph in Haskell

I am now struggling with Haskell. Even, I have some experience with imperative languages, with OOP, but Haskell seems to be different from them. I under-evaluated Haskell, and think learning a new ...
1
vote
2answers
263 views

Couldn't match expected type `Bool' with actual type `IO Bool'

I'm trying to write a prime number generator and utilizing MillerRabin formula check whether or not the number is prime before it returns the number back into me. Here is my code below: primegen :: ...
1
vote
2answers
296 views

Haskell prime number generator according to bits for very large numbers

I just got into haskell. I'm trying to write a prime number generator that would return me a prime number depending on the number of bits I give it. Do I use some sort of Sieve of Eratosthenes? Would ...
1
vote
2answers
116 views

Haskell,I need to create something like ATM function, stored multiple list in .txt file and retrieve the record

Im new in haskell, i need some help with this program. First, i store three accounts into a input.txt, so inside the file will got something like these ...
4
votes
3answers
298 views

Why is there a value constructor in addition to the type constructor in Haskell?

I'm a newcomer to Haskell and am currently going through Real World Haskell. The book says the type constructor is used only in the type signature while the value constructor is used in actual code. ...
1
vote
2answers
160 views

Transposing a text file in Haskell

I was doing the exercises in here http://book.realworldhaskell.org/read/functional-programming.html . My solution to the problem where I need to transpose a text file seems to take a lot of CPU time. ...
2
votes
2answers
100 views

How do I run subprocesses that use temp dirs in Haskell?

I've got a Haskell program that needs to execute a separate (third party) binary; this binary will write its output to a file provided as a command-line argument (it does not seem willing to write to ...
8
votes
4answers
330 views

Haskell - How do I create an operator?

Making a ternary logic table, and I would like to make my own function for an operator that i'll call "<=>". so for example, I want to do this, but that isn't right. what's the correct way to do ...
1
vote
2answers
523 views

Could Not Match Expected Type Integer with actual type float

countSequences :: Int -> Int -> Integer countSequences 0 m = 0 countSequences m 0 = 0 countSequences (n) (m) = if (n <= (m+1)) then (truncate((cee (m+1) (n) (0))) + truncate((countSequences ...
6
votes
3answers
698 views

Understanding Lazy Evaluation in Haskell

I am trying to learn Haskell, but i am stuck in understanding lazy evaluation. Can someone explain me lazy evaluation in detail and the output of the following 2 cases[with explaination] in relation ...
7
votes
3answers
530 views

“=~” raise “No instance for (RegexContext Regex [Char] [String])”

OS: MacOSX 10.7.1 GHC and Haskell-platform from brew. GHCi, version 7.0.4: http://www.haskell.org/ghc/ :? for help Loading package ghc-prim ... linking ... done. Loading package ...
1
vote
1answer
391 views

Filtering out empty lists from inside a list

Consider the list [[],[1],[1,2],[1,2,3],[],[2],[2,3],[],[3],[]] I want to filter out all elements which are not empty lists i.e the filtered output should give me a result like: ...
5
votes
1answer
261 views

Real World Haskell Chapter 3 excercise: Binary Tree with 1 value constructor

Chapter 3 defines the following recursive type to represent a binary tree: data Tree a = Node a (Tree a) (Tree a) | Empty deriving (Show) The exercise requires I implement ...
3
votes
5answers
635 views

List concatenation using foldl', foldr

I'm learning Haskell now and I'm facing the following problem: I want to rewrite the ++ function using foldl' and foldr. I've done it with foldr: myConcat xs ys = foldr (:) ys xs I can't do it ...
1
vote
1answer
577 views

What's wrong with my Graham Scan function?

I almost finish the chapter 3 of Real World Haskell. The last exercise blocks me. My code will crash while running. Does anyone can tell me which part is wrong in my code? Thanks. Question: Using the ...
6
votes
3answers
235 views

(++) operator and (:) operator and lazy evaluation

Chapter 8 of The RealWorldHaskell globToRegex' (c:cs) = escape c ++ globToRegex' cs This function is not tail recursive and it says that the answer relies on Haskell non-strict(lazy) evaluation ...
24
votes
3answers
2k views

Writing foldl using foldr

In the RealWorldHaskell, Chapter 4. Functional Programming Write foldl with foldr: -- file: ch04/Fold.hs myFoldl :: (a -> b -> a) -> a -> [b] -> a myFoldl f z xs = foldr step id xs z ...
9
votes
1answer
485 views

Why does my Mapreduce implementation (real world haskell) using iteratee IO also fails with “Too many open files”

I am implementing a haskell program wich compares each line of a file with each other line in the file. Which can be implemented single threaded as follows distance :: Int -> Int -> Int ...
-1
votes
1answer
850 views

Convert Haskell IO list to list type [duplicate]

Possible Duplicate: haskell-problem: io string -> [int] How I can convert Haskell IO list to normal list? IO [value] -> [value] Is there any built in function to do this?
2
votes
1answer
500 views

Snap web application connect with MySQL

I'm working with haksell in last few days.I create a small web app using haskell ans snap.I added html form to get user data and configured mysql db with haskell.I can retrieve data using haskell.I ...
37
votes
6answers
1k views

What haskell topics need to be addressed in a Real-World-Haskell style?

It has been quite some time now that RWH came out (almost 3 years). I was eager to get my copy after following the incremental writing of the book online (which is, I think, one of the best ways to ...
3
votes
1answer
395 views

HDBC -odbc connecting with haskell

Now I want to connect db with haskell,I tried to install HDBC-ODBC,HSQL-ODBC,and HDBC-mysql using cabal,I was able to configure sqlite3,How I can add these package? I'm getting this error when I try ...
3
votes
2answers
373 views

Why does my modified (real world haskell) Mapreduce implementation fails with “Too many open files”

I am implementing a haskell program wich compares each line of a file with each other line in the file. For symplicity let's assume the datastructure represented by one line is just an Int, and my ...
4
votes
2answers
735 views

IO over big files in haskell: Performance issue

I'm trying to work over big files using Haskell. I'd like to browse an input file byte after byte, and to generate an output byte after byte. Of course I need the IO to be buffered with blocks of ...

1 2