Haskell is an advanced functional programming language, featuring strong static typing, lazy evaluation, extensive parallelism and concurrency support, and unique abstraction capabilities.

learn more… | top users | synonyms | haskell jobs

18
votes
1answer
559 views

Haskell pre-monadic I/O

I wonder how I/O were done in Haskell in the days when IO monad was still not invented. Anyone knows an example. Edit: Can I/O be done without the IO Monad in modern Haskell? I'd prefer an example ...
4
votes
2answers
119 views

Getting stack overflow error when trying Haskell-style lazy evaluation in Scala

To practice, I'm writing some useless methods/functions in Scala. I'm trying to implement a fibonacci sequence function. I wrote one in Haskell to use as a reference (so I don't just end up writing it ...
3
votes
2answers
165 views

Writing fusible O(1) update for vector

It is continuation of this question. Since vector library doesn't seem to have a fusible O(1) update function, I am wondering if it is possible to write a fusible O(1) update function that doesn't ...
1
vote
2answers
117 views

Why I am getting “ parse error on input `<-' ”?

Here is my code lotto blacklista size board current = [black | blacklista<-action current , warunki blacklista, if end current ...
2
votes
1answer
59 views

Binary Search Tree Functions in Haskell

I need help in 3 tasks. I'm really new in Haskell and functional programming. data Tree = Node Int Tree Tree | Nil Define with help of the function collapse collapse :: Tree -> [Int] ...
1
vote
0answers
75 views

Hamlet templates doesn't update

I'm new in Yesod. I have strange problem - I have created new Yesod application with cabal-dev yesod init and tried modify templates/homepage.hamlet . When I restarted development service, I didn't ...
6
votes
1answer
96 views

What's the difference between module, package and library in Haskell?

What's the difference between module, package and library in Haskell? From http://www.haskell.org/ghc/docs/latest/html/libraries/base/Prelude.html Prelude: a standard module imported by default into ...
5
votes
1answer
90 views

How to prevent g++ from not inlining inline functions (to enable Haskell FFI use in GHCI)

I have recently met an issue with C++ inline functions when using Haskell FFI to C/C++. Namely, g++ does not really inline functions that are declared inline, and generate symbols for them. ...
5
votes
2answers
113 views

No stream fusion with unsafeUpdate_ in unboxed vector

Is it possible to maintain stream fusion when processing a vector if unsafeUpdate_ function is used to update some elements of a vector? The answer seems to be no in the test I did. For the code ...
4
votes
2answers
140 views

Is there a way I can write this Haskell code in Scala?

I'm going through a few functional programming languages, learning things of interest, and I'm looking at Scala now. What I'm trying to do is figure out the simplest way to write a function called ...
1
vote
1answer
53 views

Language.Haskell.Interpreter - how to properly call IO actions?

Following the example file, I try to dynamically call an IO action. testHint :: Interpreter () testHint = do setImportsQ [("Prelude", Nothing)] let somecode = ...
2
votes
1answer
91 views

Bug in while loop

I can't figure out what the bug is in the toy while loop I wrote below. It works for one input, but hangs for other inputs. Here is the code - the while loop takes a vector, a predicate on vector, and ...
4
votes
1answer
63 views

Why am I getting this type compatibility error with Database.PostgreSQL.Simple?

The error is *** Exception: Incompatible {errSQLType = "int8", errHaskellType = "Int", errMessage = "types incompatible"} It looks like any value returned by count(*) in the query must be converted ...
5
votes
1answer
71 views

Writing a Show instance for Data.Functor.Compose without FlexibleContexts

I'm experimenting with Data.Functor.Compose and wanted to write a Show instance for it when trying things out in ghci. What I have (which is working) is: {-# LANGUAGE FlexibleContexts #-} instance ...
5
votes
1answer
74 views

Parse a list whose separator may also occur at the end

I am trying to parse some text, but I can't understand how to parse a list of symbols separated by some separator, which may or may not occur also at the end of the list. Example (numbers separated ...
3
votes
1answer
96 views

Implementing Karatsuba algorithm in Haskell

I just got to know about Karatsuba Algorithm, and I tried to implement it in Haskell. Here is my code: (***) :: Integer -> Integer -> Integer x *** y | max x y < ub = x*y | ...
2
votes
1answer
68 views

Haskell: typeclass and instance (Not in scope: data constructor..)

I want to make a typeclass Size with a method that given a value computes the number of constructors in this value. class Size a where size :: a -> Int instance Size Int where size a = 1 ...
3
votes
2answers
95 views

Serial Comprehension in Haskell

Say one wants to run some kind of comparison on a list of combinations, for example: combs [] r = [r] combs (x:xs) r = combs xs (x:r) ++ combs xs r answer = minimumBy (\a b -> compare (length ...
2
votes
0answers
75 views

How to cross-compiling on Linux to Windows by GHC?

Is it possible to compile a foo.hs file by GHC in Ubuntu to an executable targeting windows or other platforms?
2
votes
1answer
27 views

ParseError in Yesod.Core.Class.Yesod

I have a Yesod web application, that calls a web service on another server. I reuse the Http Manager from yesod for my Requests to that web service. On some calls, I'm getting a Yesod error, and I'm ...
2
votes
2answers
100 views

Sharing queries between Rx and LINQ (or generically, streams and lists)

How can one go about sharing query logic between LINQ and Rx? i.e., if I need to sometimes query against an IObservable stream and sometimes against an IEnumerable, but the exact same logic is in ...
1
vote
2answers
66 views

[HASKELL]Couldn't match expected type `[a0]' with actual type `[a1] -> Bool'

I`m trying to write a function for reading line by line from a file: readMyFile = do contents <- readFile "input.txt" if(null sStringV == True) then do ...
13
votes
2answers
313 views

Haskell Pattern Matching Fails on Negative Number

The Haskell compiler throws an error on the following function: balancedMax :: Int -> Int -> Int balancedMax -1 _ = -1 balancedMax _ -1 = -1 balancedMax a b = max a b Flipping the sign solves ...
12
votes
1answer
292 views

A more succinct way to map functions onto fields of an algebraic datatype?

I have a datatype with lots of fields: data ManyFields a b c d .. = MF { f1 :: a, f2 :: b, f3 :: c .. } Problem One How do I map function onto each field while avoiding implementing a map ...
12
votes
1answer
292 views

Display function types in Haskell

Other than loading a Haskell file into GHCi and then using :type <expr>, is there any way to have the compiler display types for all of the functions as they are compiled?
-1
votes
2answers
151 views

Implementing a language interpreter in haskell

I want to implement an imperative language interpreter in Haskell (for educational purposes). But it's difficult for me to create right architecture for my interpreter: How should I store variables? ...
12
votes
2answers
250 views

What is a shrink, with regard to Haskell's QuickCheck?

I'm learning the ropes of QuickCheck >= 2.6 but I don't understand what a shrink is. From looking at the type signature shrink looks more like expand! Please illuminate me :)
1
vote
1answer
118 views

Recursive permutations in Haskell

I'm trying to implement Steinhaus-Johnson-Trotter algorithm for generating permutations. My code is below: permutations :: [a] -> [[a]] permutations [] = [] permutations (x:[]) = [[x]] ...
5
votes
3answers
152 views

Haskell do notation to bind

I´am trying to desugar a do statement in Haskell. I have found some examples here on SO but wasn´t able to apply them to my case. Only thing I can think of is a heavy nested let statement, which ...
1
vote
3answers
118 views

Nested-if in Haskell

I follow the real world haskell, and there is an exercise in chapter 2. My solution is lastButOne xs = if null xs || null (tail xs) then [] else if null (tail (tail ...
5
votes
1answer
109 views

Fundeps for constraint families

A lot of constraints seem to come together. Let's abstract these away. type MonadNumState a m = (MonadState a m, Num a) MonadNumState is just a constraint synonym, so I get the benefit of ...
0
votes
1answer
55 views

Snap, How to lift IO monade inside a SnapletISplice

I have a IO Bool function that give me some state information. I would like to write "OK" or "KO" depending of the value returned by this function into a splice of a .tpl file. So what I would be ...
6
votes
1answer
113 views

In GHCi, can I use the result of the previous expression?

I'm doing some experimenting in GHCi, and I have a moderately long running (5 minutes) operation that I'm trying to tune. The result starts printing out partway through, and I can often tell that my ...
2
votes
1answer
77 views

Is there any way to remove redundancy with types in this function?

suppose I have two functions like so: food :: Eatable a => String -> a food animalType = getAnimal animalType getAnimal :: Eatable a => String -> a getAnimal "cat" = Cat getAnimal "dog" ...
12
votes
1answer
265 views

Debugging performance bottlenecks for longest common subsequence algorithm

I am writing a longest common subsequence algorithm in Haskell using vector library and state monad (to encapsulate the very imperative and mutable nature of Miller O(NP) algorithm). I have already ...
1
vote
1answer
73 views

Unable to install yesod-bin

I'm updating my yesod framework to the latest yesod 1.2 version. I've installed yesod-platform (painfully....had to manually delete old dependency....cabal hell), now I need to install yesod-bin and ...
8
votes
3answers
164 views

Is there any way to use IO Bool in if-statement without binding to a name in haskell?

If I've got a function that returns IO Bool (specifically an atomically), is there any way to use the return value directly in the if statement, without binding? So currently I've got ok <- ...
4
votes
1answer
117 views

Haskell - Slow socket connection when threaded

I've started with Haskell a while ago and now I'm focusing on networking. I followed some tutorials and source samples to put together a very simple echo server: main = withSocketsDo $ do forkIO ...
1
vote
1answer
92 views

Why am I getting a “parse error on input '='” error in Haskell when I align everything correctly? [duplicate]

I am currently learning Haskell from the online version of Learn You a Haskell, and I'm in Chapter 4: Syntax in Functions. While going through the book, I code up all the sample functions verbatim ...
5
votes
1answer
124 views

Unboxing boxed value in vector of four tuples

There is a performance issue I am trying to debug as part of a more complicated code. It seems that append function that I am using to create a dynamic, growable vector of (Int,Int,Int,Int) is causing ...
2
votes
1answer
106 views

Haskell unicode pattern matching

I am about to start developing an application in Haskell that requires some Unicode support. How to perform Unicode pattern matching in Haskell? I saw the GHC's syntax extension. But is there any ...
2
votes
1answer
82 views

MonadException instance is not deduced

Maybe I'm doing something stupid here, but I'm getting: No instance for (MonadException Ti) arising from a use of `getInputLine' in the code sample: module Foo where import ...
4
votes
1answer
82 views

GHCI stack overflow on `instance Show MyType`

Why do I get stack overflow trying to do this in GHCI (version 7.6.2)? How can I derive a typeclass instance during a GHCI session or why is this not possible? *Main> data T = T Int *Main> let ...
6
votes
2answers
120 views

RankNTypes: apply the same function to pairs of different types

I was trying to define this function to regroup three lists of pairs: {-# LANGUAGE RankNTypes #-} mapAndZip3 :: (forall x. x -> f x) -> [a] -> [b] -> [c] ...
7
votes
3answers
165 views

Interleaving list functions

Lets say I'm given two functions: f :: [a] -> b g :: [a] -> c I want to write a function that is the equivalent of this: h x = (f x, g x) But when I do that, for large lists inevitably I ...
5
votes
1answer
92 views

Are TChan writes integrated into Haskell STM?

If an STM transaction fails and retries, does the call to writeTChan get re-executed so that you end up with two writes, or does the STM only actually perform the write if the transaction commits? ...
0
votes
0answers
92 views

Trouble declaring multiple functions below where [duplicate]

I'm having trouble declaring multiple functions after my initial function for where. My function I am attempting to fix: --initials function using where and pattern matching initials :: String ...
4
votes
2answers
85 views

Haskell LLVM bindings - Type error arising from use of add instruction

I'm trying to get started with the haskell-llvm bindings but I'm running into compilation errors that I don't quite understand. Code: module ModuleMaker where import LLVM.Core import LLVM.FFI.Core ...
6
votes
3answers
122 views

Type constraints for automatic function constraint deduction in Haskell

For educational purposes I am playing around with trees in Haskell. I have Tree a type defined like this data Tree a = EmptyTree | Node a (Tree a) (Tree a) and a lot of functions that share a basic ...
2
votes
1answer
161 views

Unboxing a function

I have a function that I am trying to optimize. This is part of a bigger code where I suspect this function is preventing GHC from unboxing Int arguments at higher level function that calls it. So, I ...

1 2 3 4 5 232