Tagged Questions
18
votes
4answers
836 views
How to tell if a list is infinite?
Is there a way to tell if a list in Haskell is infinite? The reason is that I don't want to apply functions such as length to infinite lists.
18
votes
3answers
736 views
Proving equality of streams
I have a data type
data N a = N a [N a]
of rose trees and Applicative instance
instance Applicative N where
pure a = N a (repeat (pure a))
(N f xs) <*> (N a ys) = N (f a) (zipWith ...
14
votes
4answers
499 views
Left and Right Folding over an Infinite list
I have issues with the following passage from Learn You A Haskell (Great book imo, not dissing it):
One big difference is that right
folds work on infinite lists, whereas left ones don't! To put ...
13
votes
4answers
764 views
Why does this Haskell code work successfully with infinite lists?
I have some Haskell code that does work correctly on an infinite list, but I do not understand why it can do so successfully. (I modified my original code -- that did not handle infinite lists -- to ...
7
votes
6answers
239 views
Infinite list of infinite counters
For those with suspicious minds, this is not homework, just curious.
Given a finite alphabet, is it possible to construct a list of infinitely long words made from the alphabet in reverse lexographic ...
3
votes
1answer
107 views
Eager versus Lazy Haskell. Infinite lists possible in Eager languages?
Apparently it is possible to implement Haskell such that it evaluates eagerly without changing the semantics of the language at all. If that is true, how are infinite data structures handled?
...
3
votes
2answers
130 views
Excluding computed results from a map of [1..]?
I'm currently working on a program which computes amicable pairs (Project Euler 21). I've already found the solution, however I noticed that a flaw in my program was that it evaluates all of the ...
3
votes
6answers
984 views
In Haskell, how can you sort a list of infinite lists of strings?
So basically, if I have a (finite or infinite) list of (finite or infinite) lists of strings, is it possible to sort the list by length first and then by lexicographic order, excluding duplicates? A ...
2
votes
8answers
652 views
Are infinite lists useful for any real world applications?
I've been using haskell for quite a while now, and I've read most of Real World Haskell and Learn You a Haskell. What I want to know is whether there is a point to a language using lazy evaluation, in ...
0
votes
2answers
516 views
Occurs check: cannot construct the infinite type?
I'm trying to write a function that, given two quadtrees representing images, will output another boolean quadtree "mask", with value True for a pixel if both quadtrees have the same color the ...