Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

MoreLINQ


Collective - Host: opensource - https://opencollective.com/morelinq - Code: https://github.com/morelinq

Added implementation of the Slice operator.

Slice is an optimized, clear version of s.Skip(start).Take(count). It provides a means to extrac...

github.com/morelinq/MoreLINQ - 930989a0c1efa629d536c35a97f824d73ee16692 authored almost 15 years ago by Leopold Bushkin <[email protected]>
Added implementation of the OrderBy/ThenBy operators.

These new overloads of OrderBy/ThenBy allow the direction of the ordering to be supplied as a pa...

github.com/morelinq/MoreLINQ - f3210ddf60328e7177968296bc6835688f21bad6 authored almost 15 years ago by Leopold Bushkin <[email protected]>
Added implementation of the While operator.

While consumes elements of a sequence while a condition involving adjacent pairs of elements hol...

github.com/morelinq/MoreLINQ - eff4311b079afd800857000d1a473fff583aab95 authored almost 15 years ago by Leopold Bushkin <[email protected]>
Added implementation of the Incremental operator.

The Incremental operator visits every adjacent pair of elements in a sequence {N,N+1}, {N+1,N+2}...

github.com/morelinq/MoreLINQ - c61d8c6a6e713f245eba235113cfafb7a919d889 authored almost 15 years ago by Leopold Bushkin <[email protected]>
Added implementation of the SegmentOperator.

The Segment operator divides a sequence into multiple sequences by using a caller-supplied segme...

github.com/morelinq/MoreLINQ - 11dfcb696c84462ea800d24689242336aceae14e authored almost 15 years ago by Leopold Bushkin <[email protected]>
Fixed issue #43, "ToDelimitedString delimits incorrectly on sequence starting with empty strings."

github.com/morelinq/MoreLINQ - 0ab38df88c3782fae1a2bd231776287982c2e66e authored almost 15 years ago by Atif Aziz <[email protected]>
Enhanced ToDataTable to allow expressions to be in a different order than the columns of table already having a schema. The expressions are re-ordered accordingly.

github.com/morelinq/MoreLINQ - 9b29e9e6be76bbd252fa84c77e24e0cc65d7bfa6 authored almost 15 years ago by Atif Aziz <[email protected]>
Removed odd SetupFixture attribute application on ToDataTableTest that was preventing unit tests from running in the test runner.

github.com/morelinq/MoreLINQ - b35923a89dd0cd2f3434ef0b02af5a1e097d46d7 authored almost 15 years ago by Atif Aziz <[email protected]>
Removed some redundancy between GetAccessedMember and PrepareMemberInfos helpers for ToDataTable and improved exception handling.

github.com/morelinq/MoreLINQ - 65b1636fe09c61ec9d0aaec7cbc67e5a92915abb authored almost 15 years ago by Atif Aziz <[email protected]>
Fixed exception messages to read as full and proper sentences.

github.com/morelinq/MoreLINQ - fe9f95c567a667a8735c950333e03b19083364c4 authored almost 15 years ago by Atif Aziz <[email protected]>
Reformatted tabs to spaces.

github.com/morelinq/MoreLINQ - 61a905f9b2c20ea9b5d073668edce43847000b11 authored almost 15 years ago by Atif Aziz <[email protected]>
Fixed potential NullReferenceException.

github.com/morelinq/MoreLINQ - 4927b161ed7d19b98e93a2ff272902a4ee5870a0 authored almost 15 years ago by Atif Aziz <[email protected]>
Added the implementation of the Partition operator.

Partition divides a sequence into a series of sequences whose elements are defined by a separate...

github.com/morelinq/MoreLINQ - 8f2fa6b2b909296b333b10c26176c5d89ac17efa authored almost 15 years ago by Leopold Bushkin <[email protected]>
Added implementation of the PairUp operator.

PairUp combines pairs of adjacent elements in the source sequence and returns the result of appl...

github.com/morelinq/MoreLINQ - 320cd068e053719479f6ac5ea99f7c28dccae0e7 authored almost 15 years ago by Leopold Bushkin <[email protected]>
Added implementation of the SortedMerge operator.

SortedMerge combines two or more sequences that are already ordered (either ascending or descend...

github.com/morelinq/MoreLINQ - 46d5a128bea729dda9f1b359d9bc524ee995e4a2 authored almost 15 years ago by Leopold Bushkin <[email protected]>
Added implementation of the RunLengthEncode operator.

RunLengthEncode transforms a sequence of values into a sequence of KeyValuePair<T,int> represent...

github.com/morelinq/MoreLINQ - e533de08c8cecc574a6682562cf1d7f65bc19b5a authored almost 15 years ago by Leopold Bushkin <[email protected]>
Updated implementation based on code review feedback:

1. Improved error message reported in ArgumentOutOfRangeException thrown by Random(Random rand, ...

github.com/morelinq/MoreLINQ - 9516c8112e2fc0cbcaf9a2f1820e6c46434016a3 authored almost 15 years ago by Leopold Bushkin <[email protected]>
Added implementation of the RandomSubset operator.

RandomSubset returns a sequence of randomly selected items from the original sequence.

github.com/morelinq/MoreLINQ - 716a09fccb882830e201b2e28d3fbd765cc38d29 authored almost 15 years ago by Leopold Bushkin <[email protected]>
Added implementation of PermutedSubsets operator.

PermutedSubsets is an efficient combination of the Subsets() and Permutations() operator which g...

github.com/morelinq/MoreLINQ - 495fbdd2eca47a6ee0f737fe6c0fcfc0832ba302 authored almost 15 years ago by Leopold Bushkin <[email protected]>
Added implementation of the Permutations operator.

This operator generates all of the permutations (re-orderings) of a source sequence. It evaluate...

github.com/morelinq/MoreLINQ - 6c0f012c56d098f530e46a455b80b9e8570607a3 authored almost 15 years ago by Leopold Bushkin <[email protected]>
Somehow Check for Modifications missed this file. Added to fix the build.

github.com/morelinq/MoreLINQ - fcb6aba215da322b3bda5424894b6ae8c26f54a3 authored almost 15 years ago by Leopold Bushkin <[email protected]>
Implemented the NestedLoops operator which expands an Action into a sequence equivalent to a set of nested loops.

Calling someAction.NestedLoops( new[]{ 4, 3, 2 } ) is equivalent to:

for( int i = 0; i < 4; i...

github.com/morelinq/MoreLINQ - 21a108ca36d6c5810353d8ecd1f38046a7216494 authored almost 15 years ago by Leopold Bushkin <[email protected]>
Implementation of the Repeat.cs() operator.

This is the logical expansion of the Enumerable.Repeat() operator, except that it repeats the ele...

github.com/morelinq/MoreLINQ - e2f5c86cbcab503621ab0d777485b88afe801f01 authored almost 15 years ago by Leopold Bushkin <[email protected]>
Fixed the project file to include Subsets.cs as a dependency of MoreEnumerable.cs

github.com/morelinq/MoreLINQ - 12b4b7c1167ccb1c750953874a7bcc0d74cdeda8 authored almost 15 years ago by Leopold Bushkin <[email protected]>
Added the implementation of the Subsets family of operators.

These operators are extension methods which produce either the complete or k-sized subsets of a s...

github.com/morelinq/MoreLINQ - 330e606d1474060bf811590a486679fed6529228 authored almost 15 years ago by Leopold Bushkin <[email protected]>
Implementation of the Random() family of extension methods.

github.com/morelinq/MoreLINQ - 9ad8f82625fd5fde3347639b741b1a8a344dbc6f authored almost 15 years ago by Leopold Bushkin <[email protected]>
Implemented row based loading for ToDataTable().

Changed implementation to use MemberInfos, extract them from supplied expressions.
Added expressi...

github.com/morelinq/MoreLINQ - 8502f2db5e19bb08ed722e8529c695269c0d15b3 authored almost 15 years ago by Johannes Rudolph <[email protected]>
Created a separate branch to merge the operators from EvenMoreLINQ into.

github.com/morelinq/MoreLINQ - 6c61d4ca9e9dc75b3ef512c8f93c6509e6582365 authored almost 15 years ago by Leopold Bushkin <[email protected]>
Fixed performance issue (http://groups.google.com/group/morelinq-dev/msg/78247c3267b63239) due to non-null constraint checking, bringing the re-factored version nearly on par with the original in speed.

github.com/morelinq/MoreLINQ - e3c493466e7ea48c3398fa60642351ab2c0ff97f authored almost 15 years ago by Atif Aziz <[email protected]>
Re-factored Enumerable.ToDataTable so that ModelShredder implementation is in-lined and does not require introducing new types through functional variance, polymorphic types and lambda expressions for schema building and MSIL generation.

github.com/morelinq/MoreLINQ - e811f0f5919f00796afd775476c90a2300ae194a authored almost 15 years ago by Atif Aziz <[email protected]>
Created a branch to refactor the ModelShredder integration into a LINQ-ish Enumerable.ToDataTable.

For more, see discussion thread:
http://groups.google.com/group/morelinq-dev/t/10b777ca7703f0e6

github.com/morelinq/MoreLINQ - cc5b290290b550a1083eabb1bb5de6b53e8fc473 authored almost 15 years ago by Atif Aziz <[email protected]>
Use foreach loop instead of IEnumerator, correctly end table data loading

github.com/morelinq/MoreLINQ - 8468f2fda0a5177390c91f92c062cc8872523de0 authored almost 15 years ago by Johannes Rudolph <[email protected]>
fixed broken build

github.com/morelinq/MoreLINQ - 345265523fde30df1a5d1eac33b0780d9c1965b2 authored almost 15 years ago by Johannes Rudolph <[email protected]>
forgot to commit MoreLinq project file.

github.com/morelinq/MoreLINQ - ddcc9764152c4dc7d503927685fe24f45bf570d5 authored about 15 years ago by Johannes Rudolph <[email protected]>
Merged Modelshredder code

github.com/morelinq/MoreLINQ - ba37b29c03135458e459c8c06b3c1b6a18985f8b authored about 15 years ago by Johannes Rudolph <[email protected]>
Improved testing sequence to have simpler usage and also check that a LINQ operator does not enumerate a sequence twice. DisposeTestingSequence is now called simply TestingSequence since it asserts for disposal as well as single enumeration.

github.com/morelinq/MoreLINQ - 6f003ab3ac3297662b7b006f18155ab851220f1c authored about 15 years ago by Atif Aziz <[email protected]>
Fixed issue #27, "Error in description of TakeEvery."

github.com/morelinq/MoreLINQ - 08cc45b078d60863b604a8e4e1cb06efd5bba987 authored about 15 years ago by Atif Aziz <[email protected]>
Added TakeLast operator that more efficiently yields the last N values of a sequence instead of doing x.Reverse().Take(n).

github.com/morelinq/MoreLINQ - 481f4d6a2231f8fbb5878553660a9ca64b15df5a authored about 15 years ago by Atif Aziz <[email protected]>
Added ExceptBy operator.

github.com/morelinq/MoreLINQ - 5c8c01465dc6cd0817c13c0aba55732a50ba5e28 authored over 15 years ago by Jon Skeet <[email protected]>
Updated ignore list.

github.com/morelinq/MoreLINQ - 1d9a2d77d69bcc3b0c8f1170859e1904d52d903a authored over 15 years ago by Atif Aziz <[email protected]>
Update file build and revision numbers for 1.0 BETA.

github.com/morelinq/MoreLINQ - c18fc43c62529c6652511407b5332580b22c42e3 authored over 15 years ago by Atif Aziz <[email protected]>
Updated ignore list.

github.com/morelinq/MoreLINQ - 062a4a8c86e8926995b9fb6cbe0a25692edce540 authored over 15 years ago by Atif Aziz <[email protected]>
Added script to generate build and revision number based on time scheme.

github.com/morelinq/MoreLINQ - 64392ec19e6747c961f1d5d911c74b2f81567abb authored over 15 years ago by Atif Aziz <[email protected]>
Updated ignore list.

github.com/morelinq/MoreLINQ - 826ba930b9cc8453cc499901b1b9c0a6d1e8c5ec authored over 15 years ago by Atif Aziz <[email protected]>
Added license and build command scripts to solution files.

github.com/morelinq/MoreLINQ - 64e218ccc9f7e8da9715769b2340b907d4cdb8e4 authored over 15 years ago by Atif Aziz <[email protected]>
Added license to core source files.

github.com/morelinq/MoreLINQ - 56167fa04d4f4d20d9a30ab0ab393445451ee7de authored over 15 years ago by Atif Aziz <[email protected]>
Cleaned-up assembly information attributes in anticipation of release.

github.com/morelinq/MoreLINQ - 220ae3142df875f1d122276fc9d7dd0bf4efcdcc authored over 15 years ago by Atif Aziz <[email protected]>
Added command scripts to build the solutions.

github.com/morelinq/MoreLINQ - 91ed61666227b4b89700a9c5cf89f4653fa22ead authored over 15 years ago by Atif Aziz <[email protected]>
Added license.

github.com/morelinq/MoreLINQ - 2c6ce8edf20f03bf9e4ad8ab4eb1904a67475841 authored over 15 years ago by Atif Aziz <[email protected]>
Added missing test fixture files.

github.com/morelinq/MoreLINQ - b1aadf296a4f80752ec2cb25e9de5002de57bf71 authored almost 16 years ago by Atif Aziz <[email protected]>
Fixed issue #24, "Replace ImbalancedZipStrategy.Pad and Fail with ZipLongest and EquiZip".

github.com/morelinq/MoreLINQ - 3a5fdc60be03e10cf0aeeb9e4ed71492cba50ced authored almost 16 years ago by Atif Aziz <[email protected]>
Synchronized Silverlight project with changes in r83 and r84.

github.com/morelinq/MoreLINQ - d735daef5539f378270681912b1d3c87181dbfb2 authored almost 16 years ago by Atif Aziz <[email protected]>
Fixed error CS1574, "XML comment on 'MoreLinq.ImbalancedZipStrategy' has cref attribute 'Enumerable.Zip<T1,T2,TResult>(IEnumerable<T1>,IEnumerable<T2>,Func<T1,T2,TResult>,ImbalancedZipStrategy)' that could not be resolved."

github.com/morelinq/MoreLINQ - 49d12333ba1dab080b41cfda797962d714fb6e8f authored almost 16 years ago by Atif Aziz <[email protected]>
Enumerable => MoreEnumerable

Nest the methods in Solution Explorer.

github.com/morelinq/MoreLINQ - a4ebc9b9281e92f15be535ed8221564dc7a12fa6 authored almost 16 years ago by Jon Skeet <[email protected]>
Removed "Pull" from namespace, and split tests into different classes.

github.com/morelinq/MoreLINQ - 6e168cdf3259ee9fbadb31cf9cc7c61b29e01dbc authored almost 16 years ago by Jon Skeet <[email protected]>
Reviewed issue #23 and merged reorg, r66-r80.

github.com/morelinq/MoreLINQ - 66b97f0d24d9bc69e427b995d014afd9f2971fe1 authored almost 16 years ago by Atif Aziz <[email protected]>
Removed some warnings selectively

github.com/morelinq/MoreLINQ - b1db5b7be7e74fb248d8573ece417d1974eceb02 authored almost 16 years ago by Konrad Rudolph <[email protected]>
Re-organized TransformationTest as EnumerableTest.

github.com/morelinq/MoreLINQ - 98e1dbc37de3dc298dc3c873392706f3e2fa5611 authored almost 16 years ago by Atif Aziz <[email protected]>
Re-organized SideEffectsTest as EnumerableTest.

github.com/morelinq/MoreLINQ - eb300d0a5a0bd1e3ab631f3bad1d80c13c15ec09 authored almost 16 years ago by Atif Aziz <[email protected]>
Re-organized SetOperationsTest as EnumerableTest.

github.com/morelinq/MoreLINQ - b125858061f173f8331d2aac5ba5c3274203e6eb authored almost 16 years ago by Atif Aziz <[email protected]>
Re-organized SequenceTest as EnumerableTest.

github.com/morelinq/MoreLINQ - 03db54e5d0606cd843368a0e5ea0407880b403ca authored almost 16 years ago by Atif Aziz <[email protected]>
Re-organized GroupingTest as EnumerableTest.

github.com/morelinq/MoreLINQ - 44a4b3071ef6e03abd7df365c25aa645d9c5094c authored almost 16 years ago by Atif Aziz <[email protected]>
Renamed tests for TakeEvery because they were missing the `Take` prefix.

github.com/morelinq/MoreLINQ - 7c847e9eb88cb52c9a6bd2289fc90f11a7cfdebf authored almost 16 years ago by Atif Aziz <[email protected]>
Re-organized ConcatenationTest as EnumerableTest.

github.com/morelinq/MoreLINQ - 6bf6a3dd4e50df78438776b668130e362a118583 authored almost 16 years ago by Atif Aziz <[email protected]>
Re-organized PartitionTest as EnumerableTest.

github.com/morelinq/MoreLINQ - 63c7c18f6e16077cda43bfab3a8a87644031a7e0 authored almost 16 years ago by Atif Aziz <[email protected]>
Categorized SingleOrFallback tests.

github.com/morelinq/MoreLINQ - 46233bc6aa0a7954d90987fc3d662e2281ec3561 authored almost 16 years ago by Atif Aziz <[email protected]>
Re-organized SingleOrFallbackTest as EnumerableTest.

github.com/morelinq/MoreLINQ - 6881092f9762c04c53f8bc4502d3deb883e255f5 authored almost 16 years ago by Atif Aziz <[email protected]>
Re-organized MiscellaneousTest as EnumerableTest.

github.com/morelinq/MoreLINQ - e2a94f14e3a2ef64c880d3ddbe9df9a7cf112cf7 authored almost 16 years ago by Atif Aziz <[email protected]>
Re-organized AssertionTest as EnumerableTest.

github.com/morelinq/MoreLINQ - fc6d5ff6a8174d02bdf3d18fa70b8f6f9c1c4024 authored almost 16 years ago by Atif Aziz <[email protected]>
Re-organized AggregationTest under EnumerableTest.

github.com/morelinq/MoreLINQ - 88f85c34d4ac1ea4ad55824b8571a41aafb9a438 authored almost 16 years ago by Atif Aziz <[email protected]>
Re-organized all operators under a single Enumerable class. The Enumerable type, however is partial and each operator now resides in its own file along with all overloads.

github.com/morelinq/MoreLINQ - 432f748cc72e18b4b8470cae0eef383a1cd67fc9 authored almost 16 years ago by Atif Aziz <[email protected]>
Created a branch to try and bring the Pull operators under a single Enumerable class and review the merits of the approach.

github.com/morelinq/MoreLINQ - ded301276c2d66a6b7f4489dc87d22d0e107941f authored almost 16 years ago by Atif Aziz <[email protected]>
Simplified conditional import for Trace operator.

github.com/morelinq/MoreLINQ - e2d8cd7b5a2104a45c152137476a6444022ee899 authored almost 16 years ago by Atif Aziz <[email protected]>
Removed unused namespace.

github.com/morelinq/MoreLINQ - 2cfb48328ac4ca5c5397bede2efa204881b2c976 authored almost 16 years ago by Atif Aziz <[email protected]>
Synchronized Silverlight project with addition in r55.

github.com/morelinq/MoreLINQ - 46aa2a039ccd6623d6952a1ef797a4b28e7b7f91 authored almost 16 years ago by Atif Aziz <[email protected]>
Restored original DistinctBy implementation because it more efficient. It can yield as soon as the first occurrence of a value has been retrieved, skipping only duplicates. The implementation for Sivlerlight hops over GroupBy (as no HashSet<T> is available) to the same effect in the end.

github.com/morelinq/MoreLINQ - a5451364af1c502b2b329bf379b09d8d638a29d4 authored almost 16 years ago by Atif Aziz <[email protected]>
Fixed culture-dependent formatting bug in `TraceSequenceWithFormatter` test.

github.com/morelinq/MoreLINQ - 81fa6d2d41402ad672eb3f93c2b4a72187a7f4a6 authored almost 16 years ago by Konrad Rudolph <[email protected]>
Updated Trace to allow a formatter function.

github.com/morelinq/MoreLINQ - 22a4b6b102fc9a588c8b9097e3b5f784da5b451b authored almost 16 years ago by Atif Aziz <[email protected]>
Fixed ToDelimitedString doc summaries.

github.com/morelinq/MoreLINQ - cdbaeffd13e49913aec3637fce4e4d4be28e49cf authored almost 16 years ago by Atif Aziz <[email protected]>
Loop in a clearer way without overflow.

github.com/morelinq/MoreLINQ - 05fdd5070866f8638450ef2d3deab3ad2a7cdc2f authored almost 16 years ago by Jon Skeet <[email protected]>
Implement issue #12 - still got other overloads and FallbackIfEmpty to implement though.

github.com/morelinq/MoreLINQ - d7c47fc2ec78c16bc308c26cb443be49c16611c1 authored almost 16 years ago by Jon Skeet <[email protected]>
Synchronized Silverlight project with new Miscellaneous.cs introduced in r53.

github.com/morelinq/MoreLINQ - 8b17d41fbe9d42e061c022d03d352963e0b1afa9 authored almost 16 years ago by Atif Aziz <[email protected]>
Implemented issue #11 and removed the equivalent test operator. Also a few little tidy-ups.

github.com/morelinq/MoreLINQ - 6fc5e7b07df0a1c3a124547751b94516eaa6c6de authored almost 16 years ago by Jon Skeet <[email protected]>
Updated Silverlight project due to file rename in r49.

github.com/morelinq/MoreLINQ - 3d5c9b354b9cded91c4fb98f839a0d2a2e1fb576 authored almost 16 years ago by Atif Aziz <[email protected]>
Refactored the for loop into a "more-obviously-infinite" while(true) loop.

github.com/morelinq/MoreLINQ - 3b3a3a3f1b49a658487b50d8b1483ef9b171bf7a authored almost 16 years ago by Jon Skeet <[email protected]>
Added GenerateByIndex

github.com/morelinq/MoreLINQ - 61a9cff2defce52ef8409fc539e846bdae7c9ff1 authored almost 16 years ago by Jon Skeet <[email protected]>
Renamed Series.Expand to Sequence.Generate.

github.com/morelinq/MoreLINQ - 9d2f5c759887f28e67a827b9e78dcd0591a96efd authored almost 16 years ago by Jon Skeet <[email protected]>
Moved MoreLinq.Silerlight project into its own independent solution file so that if someone does not have the Silverlight tools installed then they will not have trouble loading the primary solution.

github.com/morelinq/MoreLINQ - 86de19ffa865b4cc4d00b335e518ea101b0c5a6d authored almost 16 years ago by Atif Aziz <[email protected]>
Implemented issue #13, "Silverlight 2.0 assembly".

github.com/morelinq/MoreLINQ - 00cda89fd835f71dda4112551eef2a54fa40ec02 authored almost 16 years ago by Atif Aziz <[email protected]>
Removed excess references from the project.

github.com/morelinq/MoreLINQ - bf0c38e8f99a7ec1593ea9c6ead85affcb06f6ab authored almost 16 years ago by Atif Aziz <[email protected]>
Re-implemented DistinctBy in terms of GroupBy. This makes solution more portable to Silverlight since Silverlight does not have HashSet<T>. Using GroupBy, we leverage whatever GroupBy relies on internally.

github.com/morelinq/MoreLINQ - fed130436b528045946d1d507687b2f25cb2157b authored almost 16 years ago by Atif Aziz <[email protected]>
`Scan` and `PreScan` operations added.

github.com/morelinq/MoreLINQ - e466215ff505c12bd37b09677db6bb5e351eef72 authored almost 16 years ago by Konrad Rudolph <[email protected]>
Removed redundant type specifications.

github.com/morelinq/MoreLINQ - aba473be0b2d9cb905e3f6845092b3eb151b9e48 authored almost 16 years ago by Atif Aziz <[email protected]>
Minor clean-up.

github.com/morelinq/MoreLINQ - f2b9cd07d2fd988b25a82799b4f117d1ac241b0e authored almost 16 years ago by Atif Aziz <[email protected]>
Fixed ExpandImpl type parameter to be consistent in name with the public counterpart.

github.com/morelinq/MoreLINQ - f67b2af0bbc3f73b662b31e2bb11a92675f2b24b authored almost 16 years ago by Atif Aziz <[email protected]>
Fixed Series.Expand to check arguments at time of call and not at time of iteration. Also, re-factored the implementation to be simpler and shorter.

github.com/morelinq/MoreLINQ - 1bb1a6de1a26e181b80417c3165e75ae5d0ddb76 authored almost 16 years ago by Atif Aziz <[email protected]>
Added Series class with Expand method for generating sequences according to a delegate.

github.com/morelinq/MoreLINQ - 64b0ca148455a9814fd1857f43165e273be42fc8 authored almost 16 years ago by Chris Ammerman <[email protected]>
Addressed TODO item about having a specific exception raised for AssertCount failures.

github.com/morelinq/MoreLINQ - 79040d17d6098f893674980f2dda17f8b8a9b8d3 authored almost 16 years ago by Atif Aziz <[email protected]>
Added Split operator.

github.com/morelinq/MoreLINQ - bbb47b3e7b3671720039eb7034eb9ddfc0d60b11 authored almost 16 years ago by Atif Aziz <[email protected]>
Created a branch to hold the Split operator until it is reviewed and considered useful. Otherwise this branch will serve as an archive.

github.com/morelinq/MoreLINQ - 51e44e8efcbf29fce9476364bbf58aaf6e13db4d authored almost 16 years ago by Atif Aziz <[email protected]>