public readonly struct SetBuilderDefinition| DependsOn(Set) |
Adds a dependent set to the set definition.
Consider the following example. C# Here, set i has indices { 0, 1, 2, 3 }. Set j, on the other hand, depends on set i. In other words, it will generate different elements for different values of i:
|
| DependsOn(Set, Set) |
Adds dependent sets to the set definition.
Consider the following example. C# Here, set i has indices { 0, 1, 2, 3 }. Set j, on the other hand, depends on set i. In other words, it will generate different elements for different values of i:
|
| DependsOn(Set, Set, Set) |
Adds dependent sets to the set definition.
Consider the following example for two dependent set example. C# Here, set i has indices { 0, 1, 2, 3 }. Set j, on the other hand, depends on set i. In other words, it will generate different elements for different values of i:
|
| DependsOn(Set, Set, Set, Set) |
Adds dependent sets to the set definition.
Consider the following example for two dependent set example. C# Here, set i has indices { 0, 1, 2, 3 }. Set j, on the other hand, depends on set i. In other words, it will generate different elements for different values of i:
|
| Equals | (Inherited from ValueType) |
| GetHashCode | (Inherited from ValueType) |
| GetType | (Inherited from Object) |
| HasElements(FuncIEnumerableInt32, String) |
Finalizes the set builder and returns the resulting set.
The set generates elements by the function getIndices. For instance, the following set: C# |
| HasElements(IEnumerableInt32, String) |
Finalizes the set builder and returns the resulting set.
The set generates elements in [start, untilExclusive). For instance, the following set: C# |
| HasElementsIn |
Finalizes the set builder and returns the resulting set.
The set generates elements in [start, untilExclusive). For instance, the following set: C# |
| HasElementsUntil |
Finalizes the set builder and returns the resulting set.
The set generates elements in [0, untilExclusive). For instance, the following set: C# |
| ToString | (Inherited from ValueType) |