7 references to Associative
System.Core (7)
System\Linq\Parallel\Enumerables\QueryAggregationOptions.cs (1)
28AssociativeCommutative = (Associative | Commutative) // For convenience.
System\Linq\Parallel\QueryOperators\AssociativeAggregationOperator.cs (2)
90Contract.Assert((options & QueryAggregationOptions.Associative) == QueryAggregationOptions.Associative, "expected an associative operator");
System\Linq\ParallelEnumerable.cs (4)
1685if ((~(QueryAggregationOptions.Associative | QueryAggregationOptions.Commutative) & options) != 0) throw new ArgumentOutOfRangeException("options"); 1687if ((options & QueryAggregationOptions.Associative) != QueryAggregationOptions.Associative) 1732if ((~(QueryAggregationOptions.Associative | QueryAggregationOptions.Commutative) & options) != 0) throw new ArgumentOutOfRangeException("options");