vote up 2 vote down star

If I have a type defined as a set of an enumerated type, it's easy to create an empty set with [], but how do I create a full set?

EDIT: Yeah, the obvious solution is to use a for loop. That's also a really bad solution if there's another way. Does anyone know of a way that'll work in constant time?

flag

69% accept rate
You know it's a bitset, so use that knowledge and fill it with all-1s. There is no language primitive for it. – Barry Kelly Oct 31 '08 at 23:23

2 Answers

vote up 5 vote down check

Per Barry's suggestion:

FillChar(VarSet, SizeOf(VarSet), $FF);
link|flag
vote up 4 vote down

Low() and High() are "compiler magic" functions that can be evaluated at compile time. This allows their use in constant declarations like the following:

var
  MySet : TBorderIcons;
  MySet2 : TBorderIcons;
const
  AllIcons : TBorderIcons = [Low(TBorderIcon)..High(TBorderIcon)];
begin
  MySet := [Low(TBorderIcon)..High(TBorderIcon)];
  MySet2 := AllIcons;
end;
link|flag
Dude! That was GOOD! ;) Thank you! – F.D.Castel Nov 4 '08 at 3:11
I'm even deleting my own answer, after that ;) – F.D.Castel Nov 4 '08 at 3:12

Your Answer

Get an OpenID
or

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