Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

30
votes
6answers
4k views

Is Haskell really a purely functional language considering unsafePerformIO?

Haskell is generally referenced as an example of a purely functional language. How can this be justified given the existence of System.IO.Unsafe.unsafePerformIO ? Edit: I thought with "purely ...
13
votes
3answers
981 views

A way to avoid a common use of unsafePerformIO

I often find this Pattern in Haskell code: options :: MVar OptionRecord options = unsafePerformIO $ newEmptyMVar ... doSomething :: Foo -> Bar doSomething = unsafePerformIO $ do opt <- ...
5
votes
3answers
261 views

How to write a haskell function without IO in type sig by hiding 'state' changes

I wrote a function in haskell that takes a few parameters like Word32, String (ignore currying) and outputs IO Word32. Now, this is a function in the true sense: for the same inputs, the output will ...
4
votes
5answers
607 views

Departmental restriction against unsafePerformIO

There has been some talk at work about making it a department-wide policy of prohibiting the use of unsafePerformIO and its ilk. Personally, I don't really mind as I've always maintained that if I ...
2
votes
2answers
196 views

How do use putStrLn for tracing (Haskell)

I am trying to get a Haskell function to show whenever it is applied by adding a call to "putStrLn": isPrime2 1 = False isPrime2 n = do putStrLn n null (filter (==0) (map (mod n) (filter ...
2
votes
3answers
453 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 ...