Enhanced C#
Language of your choice: library documentation

Documentation moved to ecsharp.net

GitHub doesn't support HTTP redirects, so you'll be redirected in 3 seconds.

 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
List of all members
Loyc.Collections.ISetOperations< in T, SetT > Interface Template Reference

Set-combining operations: With, Without, Union, Intersect, Except, Xor. More...


Source file:
Inheritance diagram for Loyc.Collections.ISetOperations< in T, SetT >:
Loyc.Collections.ISetOperations< in T, in InSetT, out OutSetT > Loyc.Collections.ISetImm< T, SetT > Loyc.Collections.InvertibleSet< T > Loyc.Collections.MSet< T > Loyc.Collections.Set< T > Loyc.Collections.Set< T >.Enumerator

Remarks

Set-combining operations: With, Without, Union, Intersect, Except, Xor.

Template Parameters
TType of items in the set.
SetTType of the set itself.

Additional Inherited Members

- Public Member Functions inherited from Loyc.Collections.ISetOperations< in T, in InSetT, out OutSetT >
OutSetT With (T item)
 
OutSetT Without (T item)
 
OutSetT Union (InSetT other)
 
OutSetT Intersect (InSetT other)
 
OutSetT Except (InSetT other)
 
OutSetT Xor (InSetT other)