1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

doc: document [flag] enum attribute (#11282)

This commit is contained in:
Larpon 2021-08-23 13:23:59 +02:00 committed by GitHub
parent 76205cff2b
commit 47278b4a7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5306,6 +5306,23 @@ An attribute is a compiler instruction specified inside `[]` right before a
function/struct/enum declaration and applies only to the following declaration.
```v
// [flag] enables Enum types to be used as bitfields
[flag]
enum BitField {
read
write
other
}
fn example_enum_as_bitfield_use() {
assert 1 == int(BitField.read)
assert 2 == int(BitField.write)
mut bf := BitField.read
bf.set(.write | .other)
assert bf.has(.read | .write | .other)
}
// Calling this function will result in a deprecation warning
[deprecated]
fn old_function() {