Except
Usage
• Except[c] is a pattern object which represents any expression except one that matches c. • Except[c, p] represents any expression that matches p but not c.
Notes
• Except[c] is equivalent to Except[c, _]. • Except[c] represents the complement of the set of expressions that match c. • New in Version 5.1.
|