Given the following:
List> optionLists;
what would be a quick way to determine the subset of Option objects that a
Fastest to write :)
var subset = optionLists.Aggregate((x, y) => x.Intersect(y))