Extends the Filter with helper methods.
Counts how many groups ended with the specified predicate.
public Int32 CountGroupsEndedWith(filter, predicate)How many are there.
| Name | Type | Summary |
|---|---|---|
| filter | Filter | Filter. |
| predicate | FilterPredicate | A FilterPredicate. |
Counts how many groups starts with the specified predicate.
public Int32 CountGroupsStartedWith(filter, predicate)How many are there.
| Name | Type | Summary |
|---|---|---|
| filter | Filter | Filter. |
| predicate | FilterPredicate | A FilterPredicate. |
Checks whether the specified predicate is the end point of a group.
public Boolean IsEndOfGroup(filter, predicate)true if the predicate end a group, otherwise false.
| Name | Type | Summary |
|---|---|---|
| filter | Filter | Filter. |
| predicate | FilterPredicate | A FilterPredicate. |
Checkes whether the specified predicate belongs to a group.
public Boolean IsInGroup(filter, predicate)true if the predicate belong to a group, otherwise false.
| Name | Type | Summary |
|---|---|---|
| filter | Filter | Filter. |
| predicate | FilterPredicate | A FilterPredicate. |
Checks whether the specified predicate is the start point of a group.
public Boolean IsStartOfGroup(filter, predicate)true if the predicate starts a group, otherwise false.
| Name | Type | Summary |
|---|---|---|
| filter | Filter | Filter. |
| predicate | FilterPredicate | A FilterPredicate. |
In this document