Tagged Questions
The bitflags tag has no wiki summary.
18
votes
6answers
371 views
What Does the [Flags] Attribute Really Do?
What does applying [Flags] really do?
I know it modifies the behavior of Enum.ToString, but does it do anything else? (e.g. Different compiler or runtime behavior, etc.)
Edit: Yeah, I'm aware that ...
11
votes
3answers
523 views
How should I represent a bit flags int field in django admin?
I have a data model with a bitfield defined something like this:
alter table MemberFlags add column title varchar(50) not null default '';
alter table MemberFlags add column value integer( 3) not ...
9
votes
2answers
578 views
Type safe(r) bitflags in C++?
While revising some old c++ code, I ran across several bitflags defined as enums.
enum FooFlags
{
FooFlag1 = 1 << 0,
FooFlag2 = 1 << 1,
FooFlag3 = 1 << 2
// etc...
...
6
votes
2answers
262 views
Is this the most optimal way? C bitfields
I made a function to set or clear a specific number of bits in a DWORD. My function works. I don't need help making it work. However, I am wondering if the method I've chosen to do it is the fastest ...
6
votes
6answers
300 views
Actual uses of bit flags in .NET framework
Was looking at how enums can be used as bit flags by decorating them with the flags attribute and bitwize operators (see below).
Are there any places in the .NET framework that this pattern is used? ...
4
votes
5answers
114 views
Is there a pattern or a method in C# to check if an (int 1,2,4,8,…) option is true or false
I like to write enum or integer to pass option to my methods. Is there a pattern or a method in C# to check if an (int 1,2,4,8,...) option is true or false. I think it should easily be possible via ...
4
votes
4answers
156 views
Is there a name for the technique of using base-2 numbers to encode a list of unique options?
Apologies for the rather vague nature of this question, I've never formally been taught programming and Google is rather useless to a self-help guy like me in this case as the key words are pretty ...
3
votes
1answer
62 views
What is the purpose of the flags struct in iOS?
struct
{
unsigned resizesCellWidths:1;
unsigned numColumns:6;
unsigned separatorStyle:3;
unsigned allowsSelection:1;
unsigned backgroundViewExtendsUp:1;
unsigned ...
3
votes
3answers
65 views
Bitwise flag issue
I have a series of bit flags that order something like {none=0x00, puppies=0x01, kittens=0x02, cute=0x04, funny=0x08, scary=0x10} and so forth.
Whenever a user does a search, I just |= each of the ...
3
votes
2answers
231 views
Flags in VB6 does not return a correct value
I am currently trying to use a bit flag enum in a VB6 / COM project.
However, when trying to read values from the enum, I get inconsistent results.
Here is the enum definition :
Enum Fruits
None ...
3
votes
3answers
270 views
What's the optimal way to store binary flags / boolean values in each database engine?
I've seen some possible approaches (in some database engines some of them are synonyms):
TINYINT(1)
BOOL
BIT(1)
ENUM(0,1)
CHAR(0) NULL
All major database engine supported by PHP should be noted, ...
3
votes
6answers
385 views
Why does [Flag]'d enums start at 0 and increment by 1?
Edit: It seems most people misunderstood my question.
I know how enum works, and I know binary. I'm wondering why the enums with the [Flags] attribute is designed the way it is.
Original post:
This ...
2
votes
4answers
71 views
What does the bitwise OR operator (|) mean when used with two enumerated values? [closed]
Possible Duplicate:
Enum Flags Attribute
In this context:
IsolatedStorageFile.GetStore(IsolatedStorageScope.Assembly | IsolatedStorageScope.User, null)
What exactly is the | being used ...
2
votes
9answers
77 views
How to use a bitflag on an unsigned int in order to store an additional bool value in it
I use unsigned ints representing a bunch of airplanes in a game. Each plane has two states, flying and grounded. I would like to store this state together with the planes number. What is the "best" ...
2
votes
5answers
101 views
searching bit-field templates (codebooks)
I've got a bunch of 8-bit values in a codebook (about 200 of them).
My program will be generating an 8-bit value in response to input, and I need to find all (or even the first is helpful) of the ...
2
votes
2answers
128 views
What to name an array of flags?
I have a project where lots of the objects hold state by maintaining simple boolean flags. There are lots of these, so I maintain them within a uint32_t and use bit masking. There are now so many ...
2
votes
4answers
575 views
Bitflag enums in C++
Using enums for storing bitflags in C++ is a bit troublesome, since once the enum values are ORed they loose their enum-type, which causes errors without explicit casting.
The accepted answer for ...
2
votes
7answers
462 views
How to pick bitflag values?
I have a set of options, some orthogonal (can be combined in any combination), some exclusive (only one from the set is allowed), and need to pick a set of enum values so that they can be combined ...
1
vote
1answer
51 views
Polyphony with AudioRenderCallback and AudioUnitRenderFlag
I am getting my bearings in core audio / audio units, so please forgive me if this should be self evident.
If i want to allow for five voices, I need 5 buses on the mixer and at least 5 buffers if i ...
1
vote
2answers
344 views
c++ bit flags in opengl shaders (glsl)
What would be the best way to send my bit flag to the fragment shader in order to be able to if() against it?
I have the following bit flag (enum):
uint32_t options;
enum Options {
ON ...
1
vote
2answers
510 views
Simple boolean operators for bit flags
I am attempting to learn more about this to implement in my project.
I currently have got this basically:
unsigned char flags = 0; //8 bits
flags |= 0x2; //apply random flag
if(flags & 0x2) {
...
1
vote
6answers
489 views
#defined bitflags and enums - peaceful coexistence in “c”
I have just discovered the joy of bitflags. I have several questions related to "best-practices" regarding the use of bitflags in C. I learned everything from various examples I found on the web but ...
0
votes
1answer
100 views
C# int to Flag Enum [closed]
Possible Duplicate:
C# int to enum conversion
Is it somehow possible to convert an int to a flag combination enum? So, if
[Flags]
public enum Foo {a = 0x80,
b = 0x40,
...
0
votes
3answers
117 views
How to format flags in c?
Assume that there are flag definitions such as:
SHF_WRITE 0x1
SHF_ALLOC 0x2
SHF_EXECINSTR 0x4
SHF_MASKPROC 0xf0000000
Given a flag, I need to output SHF_WRITE|SHF_ALLOC if the bits 0x1 and ...
0
votes
2answers
455 views
How to calculate Bit Flag in javascript?
im writing a free tool for SEO... implementing an api from seomoz and the flags look like this
URL Metric,Bit Flag
Title,1
URL,4
Subdomain,8
Root Domain,16
External Links,32
Links,2048
mozRank,16384
...
0
votes
4answers
829 views
Enum bitfield container class
Im trying to write a small class to better understand bit flags in c++. But something isnt working out. It prints the wrong values. Where is the problem? Have I misunderstood how to add flags? Or ...