Search Results

4
votes

What is Haskell’s Stream Fusion

As far as I am aware, and contrary to what Norman said, stream fusion is not currently implemented in GHC's base (ie. you cannot just use Prelude functions). For more information see …
9
votes

Efficient String Implementation in Haskell

Apart from String/ByteString there is now the Text library which combines the best of both worlds—it wor …
3
votes

Haskell’s algebraic data types

A simple reason why they are called algebraic; there are both sum (logical disjunction) and product (logical conjunction) types. A sum type is a discriminated union, e.g: data Bool …
3
votes

Where are the clever uses of strict evaluation?

No; there are some things you can do* with lazy evaluation (AKA normal-order reduction, or left-outermost reduction) that you can't do with strict evaluation, but not the other way around. …
9
votes

Why don’t Haskell list comprehensions cause an error when pattern match fails?

While implemenatations of Haskell might not do it directly like this internally, it is helpful to think about it this way :) [x | Just x <- myList] ... becomes: …
3
votes

Haskell: recursion with array arguments

I copied your goal notes: -- assume n is 10 for this question n=10 -- create a list of all natural numbers from 1 to n (variable is 'allNumbers' is code) allNumbers = [1..n] -- cr …
6
votes

Haskell: Show screwed up?

Sounds like you're trying to simulate a ToString method, although some of your terminology is a little confusing. You can simulate it like this: {-# LANGUAGE UndecidableIns …
6
votes

Is there a Haskell compiler or preprocessor that uses strict evaluation?

If you have a Haskell compiler that uses strict evaluation, it doesn't compile Haskell. Laziness is part of the Haskell spec! However, there are alternatives. …