Eigenpoll : D wish list : Pascal like sets 

To allow for:
if (ch in <'0'..'9','A'..'F'>) { ... }

Instead of:
if ((ch >= '0' && ch<='0') || (ch >= 'A' && ch<='F')) { ... }

Ana many more nice application where a "bag of unordered values" are useful.

Report this item for cleanup