vote up 2 vote down star
1

While the following subrange enumeration declaration works:

type
   TReceiptCode = 'A'..'F';

This does not:

type
   TReceiptCode = ' ','A'..'F', 'R';

Nor does

type
    TReceiptCode = ' ','A','B','C','D','E','F','R';

How can i declare a subrange type with non-contiguous values?

flag

56% accept rate
2  
Your last example is not a subrange type (contrary to your question title). You could declare TReceiptCode = (rcspace, rcA, rcB, rcC, rcD, rcE, rcF, rcR); ReceiptCodeStr : array of TReceiptCode = (' ', 'A', 'B', 'C', 'D', 'E', 'F', 'R'); – Argalatyr Oct 9 at 20:27
i'll be happy to change the title to whatever term you want to make up. If you can't come up with one, then you can shut up. – Ian Boyd Oct 11 at 23:58
Argalatyr's comment is perfectly valid and he has provided you with a perfectly workable solution. So no need to be offensive. – Despatcher Oct 13 at 17:39
The problem, Despatcher, is that i'm trying to find a term, and a syntax, for concept that apparently doesn't exist in Delphi. If my terms and examples are not correct: it's because they don't exist. So i'd rather not hear critiques of my made-up stuff. – Ian Boyd Oct 14 at 0:35

3 Answers

vote up 2 vote down

To all previous answers I would add simply that the clue is in the name of the type: sub**range**

Simply put, a range has a lower and an upper bound. What you describe is a set (or a subset), not a subrange so of course you cannot express it as a subrange.

link|flag
You're right, of course. I think the applicable term is "oxymoron", not a pejorative but simply descriptive of a phrase that contains contradictory terms. – Argalatyr Oct 11 at 12:19
vote up 3 vote down

Could you use a set instead?

TSomeCharSet= Set of Char;

SomeChars: TSomeCharSet = [' ','A','B','C','D','E','F','R'];

Could be granny and egg situation but I'm not sure what you are using then for :) ...

Well all you are left with then is creating TNonContigousCharRange yourself using a Set or array as the limiting "Range" and raising an exception when it is out of range or having a SetReceiptCode procedure to do a similar thing.

link|flag
A type is currently defined as a Char. i'd like to limit the values of the characters can can be assigned to that type. – Ian Boyd Oct 14 at 0:37
Oh, and no, a set wouldn't work because it then takes a set of values, rather than a single value. – Ian Boyd Oct 14 at 0:38
vote up 3 vote down

Unfortunately, I don't think there's any way to do that. You can declare a (new) non-contiguous enumeration, or a subrange of an existing type, but not both.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.