7
votes
4answers
324 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 …
1
vote
6answers
182 views
Stuck in a loop ! :o
Hi.
I'm trying to implement my own List system in Java.
the List class file :
package RoutingDemo.List;
/**
* A 2-way Linked-List to store generic elements.
*
*/
public class List {
/*
…
1
vote
5answers
248 views
How can I make an iterator that never ends?
I was just wondering what the easiest way to iterate over a set indefinitely, i.e. when it reaches the end it next(); calls the first object. I'm assuming that this is not an already predefined …
1
vote
5answers
165 views
Infinite yields from an iterator.
I'm trying to learn some ruby.
Imagine I'm looping and doing a long running process, and in this process I want to get a spinner for as long as necessary.
So I could do:
a=['|','/','-','\\']
aNow=0
…
0
votes
2answers
63 views
Java: Infinite loop using Scanner in.hasNextInt()
Hi everyone,
I am using the following code:
while (invalidInput)
{
// ask the user to specify a number to update the times by
System.out.print("Specify an integer between 0 and 5: ");
…
0
votes
1answer
18 views
Windows Application SqlDepedency Calling Onchange infinitely
Hi,
I have console application in which I am doing sqldependency. My problem is when I set commandType as Text, it is working fine. But if I use commandType as StoredProcedure, onchange method is …
0
votes
2answers
100 views
How do make an infinite jscrollpane?
I've implemented drag scroll before, but what's the best way to go about creating an infinite scroll pane? Of course there won't be any scrollbars and I will implement drag scroll.
What I am trying …
0
votes
2answers
177 views
Simple Model Checker Tool
Is there a simple Model Checker tool. I am planning to implement a model checker tool which will analyze the code for some of the predefined properties.
