Top "Infinite" questions

An infinite structure or process is one which does not terminate.

Javascript: "Infinite" parameters for function?

In Chrome, when I type console.log in the one below: console.log("A parameter", "A parameter", "A parameter", "A …

javascript function parameters infinite
is Set of Real Numbers Between 0 and 1 really uncountably Infinite?

Cantor's Set of Countable infinite and Uncountable infinite Infinites You may know and you may have proved that Set of …

math set infinite set-theory countable
How to break an infinite for(;;) loop in C?

I have a vital infinite for loop that allows a sensor to keep updating its values. However I would like …

c for-loop sensors infinite
Haskell how to generate this infinite list?

I saw this code to generate Fibonacci numbers. fibs = 1:1:(zipWith (+) fibs (tail fibs)) Can a similar styled code be written …

list haskell infinite cyclic
Scala, repeat a finite list infinitely

I want to use Stream class in scala to repeat a given list infinitely. For example the list (1,2,3,4,5) I want …

list scala stream infinite
Ionic infinite scroll function invoked on page load

I am using ionic framework to create a basic Feed app. I got the refresher going but I'm having trouble …

angularjs scroll ionic-framework infinite ionic
Continuous Looping Page (Not Infinite Scroll)

I'm looking for resources that create scrolling functions like the ones found on these sites: Outpost Journal Unfold Once the …

loops scroll infinite continuous
Can Dijkstra's Single Source Shortest Path Algorithm detect an infinite cycle in a graph?

So I came to this beautiful problem that asks you to write a program that finds whether a negative infinity …

algorithm dijkstra shortest-path infinite bellman-ford
How do I check for infinite (1.#INF) and indefinite (1.#IND) numbers?

template <class T> MyClass { public: // ... void MyMethod(T dbNumber) { // ... T dbResult = do_some_operation_on_dbnumber(dbNumber); if (…

c++ class templates infinite indefinite
How to loop select() to poll for data ad infinitum

#include <stdio.h> #include <unistd.h> #include <sys/time.h> #include <sys/types.…

c select loops pool infinite