About 40,100 results
Open links in new tab
  1. What does 'enumerable' mean? - Software Engineering Stack …

    What does 'enumerable' mean? Ask Question Asked 12 years, 6 months ago Modified 12 years, 6 months ago

  2. Is there a difference between iterable and enumerable?

    Nov 9, 2013 · 19 Many languages seem to have structures that are very similar called iterable or enumerable. These are structures that can be iterated or enumerated over, which seem to me …

  3. Relation and difference between recursively enumerable …

    Sep 30, 2016 · a recursively enumerable language a set of inputs to a Turing Machine for it to recognize Yes, in fact, the recursively enumerable languages are also known as the Turing …

  4. Detecting IEnumerable "State Machines" - Software Engineering …

    It made me wonder what the best way is to detect whether an IEnumerable is an actual enumerable collection, or if it's a state machine generated with the yield keyword.

  5. linq - Is it possible to implement an infinite IEnumerable without ...

    So the question is whether or not the basic sequence (Enumerable) operations in C# are enough to construct an infinite sequence. More concretely it is the following problem: Problem I'm …

  6. array - What's the use of .Any () in a C# List<>? - Software ...

    Sep 5, 2015 · Keep in mind that Any doesn't operate on a List; it operates on an IEnumerable, which represents a concrete type that may or may not have a Count property. It's true that it's …

  7. c# - Style for creating IEnumerable unions - Software Engineering …

    There isn't any cool LINQ sugar for creating unions. The Enumerable.Union() method is usually called like this: var bigList = list1.Union(list2); The alternative is to call Enumerable.Union() whic...

  8. Why should I use List<T> over IEnumerable<T>?

    In my ASP.net MVC4 web application I use IEnumerables, trying to follow the mantra to program to the interface, not the implementation. Return IEnumerable(Of Student) vs Return New …

  9. Is linq more efficient than it appears on the surface?

    Oct 30, 2013 · If the enumerable is only partially enumerated, this is especially important. Consider this code: things.First(); The way LINQ is implemented, mythings will only be …

  10. Loop pattern for batch data processing - Software Engineering …

    Mar 28, 2022 · That being said, the underlying method aggregating the yield return ed enumerable is still going to end up having to do something along the lines of: MyBatch batch = …