Rest...tokens: readonly string[]Given an expression of logical operators, returns the name and version of the part that matches the expression.
Logical operators currently supported: | for OR and & for AND. Operands between operators will be tokenized via tokenizeWords.
The expression of tokens and operators. Example: 'windows phone|windows&mobile' will match when one part has both 'windows' and 'phone' or there are two parts, one with 'windows' and another part with 'mobile' (Case insensitive)
Given lowercase tokens of only alpha characters, returns the mapped token part if all tokens are contained in the section.