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

array: update docs

This commit is contained in:
Don Alfons Nisnoni 2019-11-13 00:26:05 +08:00 committed by Alexander Medvednikov
parent 3643dcbf4b
commit d732be64f6

View File

@ -155,7 +155,7 @@ fn (a array) get(i int) voidptr {
return a.data + i * a.element_size return a.data + i * a.element_size
} }
// array.first gives the first element of the array // array.first returns the first element of the array
pub fn (a array) first() voidptr { pub fn (a array) first() voidptr {
if a.len == 0 { if a.len == 0 {
panic('array.first: array is empty') panic('array.first: array is empty')
@ -163,7 +163,7 @@ pub fn (a array) first() voidptr {
return a.data + 0 return a.data + 0
} }
// array.last gives the last element of the array // array.last returns the last element of the array
pub fn (a array) last() voidptr { pub fn (a array) last() voidptr {
if a.len == 0 { if a.len == 0 {
panic('array.last: array is empty') panic('array.last: array is empty')