Tagged Questions
8
votes
1answer
104 views
Monad transformers monad duplication
I am new to monad transformers, so sorry easy question.
I have value val :: MaybeT IO String and function fn :: String -> IO [String].
So after binding, I have val >>= liftM fn :: MaybeT IO ...
0
votes
1answer
86 views
Haskell monad return type
I'm trying to do a bit of programming and I can't get into monads. I've advanced a bit with IO functions, but now I'm definitely lost...
I've got a XML string that was loaded from the network (so ...
1
vote
3answers
128 views
Haskell IO function type mismatch
what is the problem with the following code:
nextMatch :: (a -> Bool) -> [IO a] -> (IO a, [IO a])
nextMatch f (x:xs) = do
s <- x
if f s then (return x, xs)
else nextMatch ...
0
votes
1answer
52 views
HUnit testing with file dependent tests
I have a lexer, and wish to test it against a set of known good test cases. These are held in a subdirectory ./test_src/ , and each has an extension testname.txt
What i'd like to do is get the paths ...
4
votes
2answers
110 views
Haskell processing [IO String]
I've got the following function:
lines' :: [IO String]
lines' = getLine : lines'
I was hoping I could just use all the mighty list functions on
this list, like filter etc. But my knowledge about ...
1
vote
1answer
160 views
Haskell IO monad and do notation
The following Haskell snippit will not compile and I can't figure out why.
runCompiler :: TC -> IO ()
runCompiler tc = let cp' = cp in
do
cp'
return ()
where
cp = ...
3
votes
2answers
88 views
Haskell IO example
I was reading up on the deeper workings of the IO monad in Haskell on their
wiki and I came across this code
main = do a <- ask "What is your name?"
b <- ask "How old are you?"
...
4
votes
1answer
150 views
mapM putStrLn [“a”, “b”] why does it show three lines?
Prelude> mapM putStrLn ["a", "b"]
a
b
[(),()]
Prelude> mapM_ putStrLn ["a", "b"]
a
b
Why first version shows third line and second does not and where does third line comes from. I would not ...
19
votes
2answers
624 views
Why is there no IO transformer in Haskell?
Every other monad comes with a transformer version, and from what I know the idea of a transformer is a generic extension of monads. Following how the other transformers are build, IOT would be ...
1
vote
1answer
97 views
Using lookup with an IO list?
I am getting the contents of a file and transforming it into a list of form:
[("abc", 123), ("def", 456)]
with readFile, lines, and words.
Right now, I can manage to transform the resulting list ...
30
votes
4answers
2k views
A simple example showing that IO doesn't satisfy the monad laws?
I've seen mentioned that IO doesn't satisfy the monad laws, but I didn't find a simple example showing that. Anybody knows an example? Thanks.
Edit: As ertes and n.m. pointed out, using seq is a bit ...
4
votes
2answers
121 views
No cooperation between readFile & IO monad when programming pointlessly
Why do countInFile1 & countInFile3 have compiler errors, when countInFile0 & countInFile2 do not. All four are the same thing.
count :: String -> String -> Int
count w = length . ...
2
votes
2answers
285 views
How to get normal value from IO action in Haskell
I have the following function:
get :: Chars -> IO Chars
get cs = do
char <- getChar
let (dats, idx) = (curData cs, curIndex cs)
let (x,y:xs) = splitAt idx dats
let replacement ...
7
votes
2answers
206 views
Haskell IO Monad and memory use
I'm probably not understanding the IO monad very well.
If I write an application that is expected to run for many months, meanwhile logging its progress, will the IO monad hold all of the log ...
2
votes
2answers
198 views
Haskell - Print a Trace After Execution
I have a project for Uni to write a compiler (in Haskell) for a simple made-up imperative language. One of the requirements is printing debug statements on entering a function call, leaving a function ...
1
vote
1answer
263 views
How to properly add IO to attoparsec Parser?
I want to do some tracing/debugging in my attoparsec parser. Here's minimal [not] working example:
import Data.Text as T
import Data.Attoparsec.Text
import Data.Attoparsec.Combinator
import ...
4
votes
3answers
242 views
How to make a random list using IO in Haskell
I'm trying to do a flocking simulation in order to better teach myself haskell. I'm running into trouble when trying to generate the initial state for the simulation which requires randomness. I'm ...
7
votes
2answers
317 views
Haskell monad: IO [Double] to [IO Double]
Consider the following code that is supposed to print out random numbers:
import System.Random.Mersenne
main =
do g <- (newMTGen Nothing)
xs <- (randoms g) :: IO [Double]
mapM_ print ...
1
vote
1answer
187 views
Dispatching to correct function with command line arguments in Haskell
I'm writing a little command-line program in Haskell. I need it to dispatch to the correct encryption function based on the command line arguments. I've gotten that far, but then I need the remaining ...
3
votes
2answers
204 views
Haskell, can i call function without IO output working with monads?
Why i can't do this?
Its forbidden the use of 'do' in this question :/
How i can call words in my list and at same time result an IO?
Thanks.. this is my actual code :/
main :: IO()
main =
...
4
votes
3answers
156 views
Which monad to use in Haskell for aggregating exceptions that may happen while executing a sequence of statements?
I am looking for the most common way to do something like:
x :: IO ((),[SomeException])
x = do
void y
void z
aggregating exceptions that may be thrown by y and z and returning them as part of ...
10
votes
3answers
480 views
Extracting a Maybe value in IO
Given the following:
> (liftM2 fromMaybe) (ioError $ userError "OOPS") (return $ Just "ok")
ghci gives me
*** Exception: user error (OOPS)
Of course, fromMaybe is working correctly:
> ...
3
votes
1answer
479 views
How to exit main in haskell given a condition
I have a main function that does a lot of IO. At one point, however, I want to check a variable like not (null shouldBeNull) exit the whole program, without continuing, with a linux exitcode 1 and ...
2
votes
3answers
113 views
Getting a string from a IO ExitCode monad
I'm trying to concatenate a string given as an argument (using getArgs) to the haskell program, e.g.:
"rm " ++ filename ++ " filename2.txt" which is inside a main = do block.
The problem is with the ...
3
votes
2answers
438 views
How to convert data from IO(String) to String in haskell [duplicate]
Possible Duplicate:
A Haskell function of type: IO String-> String
i'm reading some data from a file using the readFile function available in haskell. But this function returns me some ...
1
vote
1answer
169 views
beginner error with IO monad and record syntax
Here is a simplified version of my Code:
data Bookmark = Bookmark {
url :: String
, label :: String
} deriving (Show)
genBookmark :: String -> String -> IO Bookmark
genBookmark u l = ...
7
votes
4answers
451 views
How do I handle an infinite list of IO objects in Haskell?
I'm writing a program that reads from a list of files. The each file either contains a link to the next file or marks that it's the end of the chain.
Being new to Haskell, it seemed like the ...
3
votes
1answer
172 views
Sum the filesizes in a directory
I'm having trouble wrapping my head around how to accomplish this. I'm relatively new to working with monads/IO, so excuse me if I'm missing something obvious. I searched google for a while and came ...
3
votes
1answer
350 views
Processing IO values in haskell
I'm writing a small program with IO actions in Haskell
here is
module StackQuestion where
import Data.Map (Map, insert, fromList)
type Name = String
type Value = String
readValue :: Name -> IO ...
6
votes
3answers
392 views
Simple interpreter written in Haskell, saves up print output until the end, instead of when it comes across a print statement
Below is my attempt at a very simple interpreter which is translated from the Java version of the program described in Chapter 1 of "modern compiler implementation in Java" by Andrew w. Appel, and ...
5
votes
5answers
672 views
Haskell: actual IO monad implementation, in different language?
How is IO monad actually implemented?in sense of, how would be the actual implantation of main function?
or how to call haskell function (IO) from another language and do I in that case need to ...
2
votes
2answers
210 views
Haskell monadic IO
compute fp = do
text <- readFile fp
let (a,b) = sth text
let x = data b
--g <- x
putStr $ print_matrix $ fst $ head $ x
It works when i get only first element but i want ...
5
votes
3answers
558 views
Recursive IO in Haskell
In Haskell I can easily define a recursive function which takes a value and returns a string:
Prelude> let countdown i = if (i > 0) then (show i) ++ countdown (i-1) else ""
Prelude> ...
13
votes
4answers
536 views
Can't perform I/O in foldr?
I have a Data.Map structure that maps Strings to Stringss. For whatever reason, I want to print the contents of the map in the format key: value using foldrWithKey, like so:
M.foldrWithKey (\k v b ...
0
votes
3answers
1k views
transforming IO String to String
I am having an issue converting IO String() to a String()
Below is the function to eval an expression.
foobar :: String -> IO String
eval :: String -> Sh () ()
eval x = do
s <- foobar x
...
3
votes
3answers
884 views
Haskell: The last statement in a 'do' construct must be an expression
Hey, sorry to dump the error message here but I've tried everything I can find and nothing seems relevant. This code is generating the error:
import System.Environment
import System.Directory
...
4
votes
1answer
298 views
Haskell - Checking the Validity of a File Handle
Ok, guys, super easy question (it seems weird that Google didn't help me with this one):
import IO
--.... yadda, yadda, yadda
file <- openFile "/some/path" ReadMode
How do I check if the ...
0
votes
1answer
181 views
Haskell function type with IO
I'm confusing with some stuff in haskell.First I'll explain my problem clearly,
I have function call "func1" that take result from the DB
type definition
func1 :: IO[[String]]
func1 = do
xx <- ...
0
votes
1answer
146 views
possible to make some output in do notation and then return a String in haskell?
is it possible in haskell, to make some operations live output and then return a string with a function like:
test :: String -> String
test x = do
putStrLn x
-- make some stuff
return ...
2
votes
1answer
182 views
Type error in Haskell program
User can give id, width, height and description rectangle and then I write it to a file. Now I would like to load this content from the file to my program but I have error:
Couldn't match expected ...
1
vote
2answers
724 views
couldn't match expected type IO t
Could You tell my why I have error 'Couldn't match expected type IO t against inferred type String' - see below to see bad line:
data RectangleType = Rectangle Int Int Int deriving(Show)
...
3
votes
4answers
685 views
Haskell function to get part of date as string
I have a beginner question about dates and String in Haskell.
I need to get part of date (year, month or day) as String in Haskell. I found out, that if I write the following two lines in GHCi
...
4
votes
2answers
263 views
IO in Where Clause
I thought I was beginning to understand IO in Haskell until I ran into the following problem.
I have the following function, which returns type IO Float:
getFundPrice :: Int -> Int -> IO ...
5
votes
1answer
389 views
How to create a Haskell function that turns IO String into IO [String]?
I've started to learn Haskell and feeling overwhelmed with it. I'm now trying to create a function that either returns a string from standard input or from the contents of a list of files.
In other ...
15
votes
5answers
657 views
Why does Haskell not have an I Monad (for input only, unlike the IO monad)?
Conceptually, it seems that a computation that performs output is very different from one that performs input only. The latter is, in one sense, much purer.
I, for one, would like to have a way to ...
1
vote
3answers
267 views
Extending of pure function with IO code possible?
I've written a simple XML parser in Haskell.
The function convertXML recieves contents of a XML file and returns a list of extracted values that are further processed.
One attribute of XML tag ...
0
votes
3answers
900 views
Problem with do construct in haskell
I'm trying to learn Haskell and want to write a small program which prints the content of a file to the screen. When I load it into GHCi I get the following error:
The last statement in a 'do' ...
7
votes
2answers
704 views
MonadPlus definition for Haskell IO
I was just writing a quick bit of code, and I wanted to use the guard function in the IO Monad. However, there is no definition of MonadPlus for IO which means that we cannot use guard in IO land. I ...
2
votes
3answers
827 views
Confusion over IORefs to make a counter
I found some sample code, and changed it a little
counter = unsafePerform $ newIORef 0
newNode _ = unsafePerformIO $
do
i <- readIORef counter
...
3
votes
5answers
1k views
Haskell way to join [IO String] into IO String
my goal is to write Haskell function which reads N lines from input and joins them in one string. Below is the first attempt:
readNLines :: Int -> IO String
readNLines n = do
let rows = ...