0 branches
Tree
Top files
Clone with HTTPS:
parallel
arrays.parallel: fix `v doc -unsafe-run-examples -f none vlib/arrays/parallel/` too
last Aug 13
4.32 KB
README.md
doc: update trim_doc_node_description, make module readmes more uniform (#20792)
2 years ago
267 bytes
reverse_iterator_test.v
checker: fix mutability in `for in` loops with pointer values (fix #25520) (#25536)
last Oct 20
1.56 KB
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
}