The infinite-sequence tag has no wiki summary.
4
votes
1answer
96 views
Infinite ascending sequence in Racket
Is there an analog of Python's itertools.count in Racket? I want to create an infinite stream of evenly spaced numbers. in-naturals is similar to what i want, but does not provide step. I'd want not ...
3
votes
5answers
245 views
How to cut a for-comprehension short (break out of it) in scala?
I have a piece of code which would code as follows:
val e2= for (e <- elements if condition(expensiveFunction(e))) yield expensiveFunction(e)
Where the condition will be true for a few elements ...
1
vote
3answers
119 views
Haskell - Negating even numbers in infinite stream
I am trying to generate a list of infinite numbers
0,1,-2,3,-4,5,-6...
So far I got
evenise x | x == 0 = 0
| even x = -x
| otherwise = x
s = foldl (\x -> evenise x) 0 ...
1
vote
2answers
184 views
Construction of infinite list in Haskell
I have two things for the desired infinite list: its first element
x :: A
and function which generates the next element
f :: [A] -> A
What's the best (most idiomatic? fastest?) way to create ...
4
votes
5answers
245 views
Linq statement for an infinite sequence of successive halves
Given a starting number, imagine an infinite sequence of its successive halves.
1, 0.5, 0.25, 0.125, ...
(Ignore any numerical instabilities inherent in double.)
Can this be done in a single ...
2
votes
1answer
460 views
WPF ListBox generate items as user scrolls
I am trying to use a ListBox to display a possibly infinite list of options to a user. Currently, I am simply cutting off the list at an arbitrary point, but I would like to allow the user to scroll ...
3
votes
6answers
870 views
Math.Infinity in ruby, how do i iterate over an infinite sequence
I am trying to solve Project Euler problem #12:
The sequence of triangle numbers is generated by adding the natural
numbers. So the 7th triangle number
would be 1 + 2 + 3 + 4 + 5 + 6 + 7 =
...
0
votes
1answer
200 views
infinite sequence in SML
I have to code a function that receives a sequence (finite or infinite) and returns an identical sequence with the only difference that if an exception occurs during the sequence then the function ...
0
votes
3answers
67 views
What are some useful or interesting infinite generators?
What are some clever uses for infinite generators? I've seen lots of seemingly trivial examples like "list all even numbers", but I assume there must be others that have more applicability to ...
1
vote
2answers
176 views
Capture indefinite amount of numbers with Regex?
I want to get captures using regex on a string that could contain an indefinite amount of numbers. My intuition lead me to do "/\.getnumbers (\d+)+\s*/"but that only matched the first number following ...
3
votes
4answers
284 views
linq infinite list from given finite list
Given a finite list of elements, how can I create a (lazily-evaluated, thanks LINQ!) infinite list that just keeps iterating over my initial list?
If the initial list is {1, 2, 3}, I want the new ...
4
votes
3answers
502 views
Consequences of an infinite loop on Google App Engine? [closed]
I am not a Google App Engine user. However, I understand you're billed for CPU time and other resources. What are the consequences if you happen to create an infinite loop? Will Google ever terminate ...
15
votes
2answers
1k views
Whats the point of lazy-seq in clojure?
I am looking through some example Fibonacci sequence clojure code:
(def fibs (lazy-cat [1 2] (map + fibs (rest fibs))))
I generally understand what is going on, but don't get the point of ...
1
vote
5answers
474 views
Detecting repetition with infinite input
What is the most optimal way to find repetition in a infinite sequence of integers?
i.e. if in the infinite sequence the number '5' appears twice then we will return 'false' the first time and 'true' ...
0
votes
1answer
76 views
Searching strategy in an infinte list
I am listening to a 3rd party web-service, when the services starts it generates a stream of objects which I am receiving. I have to search for a specific object within given amount of time and do ...
0
votes
3answers
632 views
Generating an infinite sequence in Haskell
I know that infinite sequences are possible in Haskell - however, I'm not entirely sure how to generate one
Given a method
generate::Integer->Integer
which take an integer and produces the next ...
