The intersect method of the WildcardExpression Class contains the following signatures:
intersect(WildcardExpression other, IWildcardExpressionComparator judge)
intersect(WildcardExpression other)
Constructs an expression that matches any strings that this and another expression both match.
public WildcardExpression intersect(WildcardExpression other, IWildcardExpressionComparator judge);
Returns an expression that is the intersection of the two expressions.
Other | The other expression. |
Judge | A helper interface. |
If either expression contains redundant subexpressions, the resulting expression will also contain redundant intersections. Calling condense beforehand on both expressions might improve the efficiency of this operaration. Redundant expressions might be returned even if the source expressions contain no redundant expressions.
Constructs an expression that matches any strings that this and another expression both match.
public WildcardExpression intersect(WildcardExpression other);
Returns an expression that is the intersection of the two expressions.
other | The other expression. |
‘