c# Programming Glossary: ienumerables
Recursive List Flattening http://stackoverflow.com/questions/141467/recursive-list-flattening in .NET 3.5 that will take a nested IEnumerable of IEnumerables and so on and flatten it into one IEnumerable. Anyone have any..
What is a catamorphism and can it be implemented in C# 3.0? http://stackoverflow.com/questions/196294/what-is-a-catamorphism-and-can-it-be-implemented-in-c-sharp-3-0 share improve this question LINQ's Aggregate is just for IEnumerables. Catamorphisms in general refer to the pattern of folding for.. of folding for an arbitrary data type. So Aggregate is to IEnumerables what FoldTree below is to Trees below both are catamorphisms..
How to get index using LINQ? http://stackoverflow.com/questions/2471588/how-to-get-index-using-linq An IEnumerable is not an ordered set. Although most IEnumerables are ordered some such as Dictionary or HashSet are not. Therefore..
Is F# really better than C# for math? http://stackoverflow.com/questions/379722/is-f-really-better-than-c-sharp-for-math development process turn it into a program that uses .NET IEnumerables and types with properties and that's how I believe typical F#..
Merging two IEnumerable<T>s http://stackoverflow.com/questions/590991/merging-two-ienumerablets but feels inefficient to me and requires me to cast the IEnumerables to ILists or to use a temporary list Person implements IEquatable..
LINQ to SQL Where Clause Optional Criteria http://stackoverflow.com/questions/632434/linq-to-sql-where-clause-optional-criteria else return source Here is the same extension method for IEnumerables public static IEnumerable TSource WhereIf TSource this IEnumerable..
Lambda Expression using Foreach Clause [duplicate] http://stackoverflow.com/questions/858978/lambda-expression-using-foreach-clause theres a technical limitation to the way C# iterates IEnumerables Vs. Lists... Is it something to do with the Deferred Execution's.. Is it something to do with the Deferred Execution's of IEnumerables IQuerable Collections. e.g. var userAgentStrings uasdc.UserAgentStrings..
How does Assert.AreEqual determine equality between two generic IEnumerables? http://stackoverflow.com/questions/933285/how-does-assert-areequal-determine-equality-between-two-generic-ienumerables Assert.AreEqual determine equality between two generic IEnumerables I have a unit test that will test to see if a method that returns.. that is similar to Python's zip function it combines two IEnumerables into a set of pairs and tried this foreach Token t in expected.zip.. is going to compare the two objects at hand. IEnumerables are types in and of themselves and provide a mechanism to iterate..
|