mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
docs: document enum <-> int assignment and casting (#8872)
This commit is contained in:
parent
cb7c5d58d9
commit
3907a1ab49
19
doc/docs.md
19
doc/docs.md
@ -2132,6 +2132,25 @@ color := Color.@none
|
||||
println(color)
|
||||
```
|
||||
|
||||
Integers may be assigned to enum fields.
|
||||
|
||||
```v
|
||||
enum Grocery {
|
||||
apple
|
||||
orange = 5
|
||||
pear
|
||||
}
|
||||
|
||||
g1 := int(Grocery.apple)
|
||||
g2 := int(Grocery.orange)
|
||||
g3 := int(Grocery.pear)
|
||||
println('Grocery IDs: $g1, $g2, $g3')
|
||||
```
|
||||
|
||||
Output: `Grocery IDs: 0, 5, 6`.
|
||||
|
||||
Operations are not allowed on enum variables; they must be explicity cast to `int`.
|
||||
|
||||
### Sum types
|
||||
|
||||
A sum type instance can hold a value of several different types. Use the `type`
|
||||
|
Loading…
Reference in New Issue
Block a user