Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can I split an IEnumerable<T> into two IEnumerable<T> using LINQ and only a single query/LINQ statement?

I want to avoid iterating through the IEnumerable<T> twice. For example, is it possible to combine the last two statements below so allValues is only traversed once?

IEnumerable<MyObj> allValues = ...
List<MyObj> trues = allValues.Where( val => val.SomeProp ).ToList();
List<MyObj> falses = allValues.Where( val => !val.SomeProp ).ToList();
share|improve this question

3 Answers

up vote 24 down vote accepted

You can use this:

var groups = allValues.GroupBy(val => val.SomeProp);

To force immediate evaluation like in your example:

var groups = allValues.GroupBy(val => val.SomeProp)
                      .ToDictionary(g => g.Key, g => g.ToList());
List<MyObj> trues = groups[true];
List<MyObj> falses = groups[false];
share|improve this answer
elegant! I can always use groups.ContainsKey() or groups.TryGetValue() to handle case where key is missing. – SFun28 Dec 29 '10 at 4:29

Some people like Dictionaries, but I prefer Lookups due to the behavior when a key is missing.

IEnumerable<MyObj> allValues = ...
ILookup<bool, MyObj> theLookup = allValues.ToLookup(val => val.SomeProp);

  //does not throw when there are not any true elements.
List<MyObj> trues = theLookup[true].ToList();
  //does not throw when there are not any false elements.
List<MyObj> falses = theLookup[false].ToList();

Unfortunately, this approach enumerates twice - once to create the lookup, then once to create the lists.

If you don't really need lists, you can get this down to a single iteration:

IEnumerable<MyObj> trues = theLookup[true];
IEnumerable<MyObj> falses = theLookup[false];
share|improve this answer
2  
+1 for suggesting Lookup and for noticing the potential problem with missing keys when using Dictionary. – Mark Byers Dec 29 '10 at 2:28
I think IGrouping should be IEnumerable in the second example? IGrouping doesn't compile and seems to be the result of the GroupBy extension method. Or perhaps a cast to IGrouping is required? – SFun28 Dec 29 '10 at 4:27
I prefer ToLookup too. – leppie Dec 29 '10 at 8:27
Thanks for correction SFun28. – David B Dec 29 '10 at 10:19

For the sake of completeness, here's another single LINQ query that accomplishes what you want. I'm using int instead of MyObj and odd/even as the predicate:

var list = new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 };

// Using odd/even as the predicate in this example:
var splits = list.Aggregate(Tuple.Create<IEnumerable<int>, IEnumerable<int>>(new int[0], new int[0]), 
        (acc, x) => x % 2 == 0 ? Tuple.Create(acc.Item1.Concat(new []{x}), acc.Item2) :
                                 Tuple.Create(acc.Item1, acc.Item2.Concat(new []{x}))); 
share|improve this answer
Definitely clever. – Jason Dec 29 '10 at 3:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.