1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/arrays
2022-11-26 18:23:26 +02:00
..
arrays_test.v all: replace generic <> with [] - part 2 (#16536) 2022-11-26 18:23:26 +02:00
arrays.v all: replace generic <> with [] - part 2 (#16536) 2022-11-26 18:23:26 +02:00
README.md all: change optional to result in most of the libraries (#16123) 2022-10-20 22:14:33 +03:00

Description:

arrays is a module that provides utility functions to make working with arrays easier.

Examples:

import arrays

fn main() {
	a := [1, 5, 7, 0, 9]
	assert arrays.min(a)! == 0
	assert arrays.max(a)! == 9
	assert arrays.idx_min(a)! == 3
}