I'm using the single-source variant from http://satisfyr.codeplex.com/
Enumerable.Range(0,10000000).Satisfy(nums=>!nums.Any());
The above assertion will generate a huge, unmanageable error message; an infinite enumerable would never terminate.
Enumerable.Range(0,10000000).Satisfy(nums=>!nums.Any());
The above assertion will generate a huge, unmanageable error message; an infinite enumerable would never terminate.