mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
doc: rename field default
to init
for array
This commit is contained in:
parent
70b76a8e31
commit
b233c24d19
@ -377,7 +377,7 @@ names = [] // The array is now empty
|
||||
users := []User{}
|
||||
|
||||
// We can also preallocate a certain amount of elements.
|
||||
ids := []int{ len: 50, default: 0 } // This creates an array with 50 zeros
|
||||
ids := []int{ len: 50, init: 0 } // This creates an array with 50 zeros
|
||||
```
|
||||
|
||||
The type of an array is determined by the first element: `[1, 2, 3]` is an array of ints (`[]int`).
|
||||
|
Loading…
Reference in New Issue
Block a user