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

doc: document the new m[key] or{}

This commit is contained in:
Alexander Medvednikov 2021-01-19 06:11:18 +01:00 committed by GitHub
parent b74690cbec
commit b9870a4c8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -711,7 +711,7 @@ users.sort(a.name > b.name) // reverse sort by User.name string field
### Maps
```v
mut m := map[string]int{} // Only maps with string keys are allowed for now
mut m := map[string]int{}
m['one'] = 1
m['two'] = 2
println(m['one']) // "1"
@ -720,11 +720,31 @@ println('bad_key' in m) // Use `in` to detect whether such key exists
m.delete('two')
// Short syntax
numbers := {
'one': 1
'two': 2
1: 'two'
2: 'three'
}
```
If a key is not found, an empty value is returned by default:
```
val := m['bad_key']
println(val) // 0
```
However it's also possible to use an `or {}` block to handle missing keys:
```
val := m['bad_key'] or { println('key not found') }
```
The same optional check applies to arrays:
```
val := arr[large_index] or { println('out of bounds') }
```
## Module imports
For information about creating a module, see [Modules](#modules).