HasElements(SetBuilderDependsDimension1, FuncInt32, IEnumerableInt32, String) |
Finalizes the set builder and returns the resulting set.
The set generates elements in [0, getIndicesByDependsSet(i)); where i is the value of the dependent set. 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:
|
HasElements(SetBuilderDependsDimension2, FuncInt32, Int32, IEnumerableInt32, String) |
Finalizes the set builder and returns the resulting set.
The set generates elements in [0, getIndicesByDependsSets(i, j)); where i and j are the values of the dependent sets. 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:
|