v/vlib/builtin
jeffmikels 5e5d62ed4c
arrays,docs: remove arrays.zip; improve docs (#13082)
2022-01-09 16:12:33 +02:00
..
js arrays,docs: remove arrays.zip; improve docs (#13082) 2022-01-09 16:12:33 +02:00
linux_bare
wasm_bare
README.md arrays,docs: remove arrays.zip; improve docs (#13082) 2022-01-09 16:12:33 +02:00
array.c.v
array.v
array_d_gcboehm_opt.v
array_notd_gcboehm_opt.v
array_test.v
builtin.c.v builtin: use dlmalloc for `-freestanding` (#13054) 2022-01-06 14:10:37 +02:00
builtin.v all: update copyright year 2022-01-04 12:21:12 +03:00
builtin_d_gcboehm.c.v builtin: fix compilation with `-gc boehm` on some FreeBSD versions (#12289) 2021-10-25 10:24:08 +03:00
builtin_ios.c.v
builtin_nix.c.v all: update copyright year 2022-01-04 12:21:12 +03:00
builtin_notd_gcboehm.c.v
builtin_windows.c.v all: update copyright year 2022-01-04 12:21:12 +03:00
byte_test.v
cfns.c.v
cfns_wrapper.c.v
chan.v checker: make use of private enum from outside module an error. (#9821) 2021-04-22 07:07:56 +03:00
float.c.v all: update copyright year 2022-01-04 12:21:12 +03:00
float_test.v builtin: vfmt every .v file, except vlib/builtin/int_test.v (#9448) 2021-03-24 20:39:59 +02:00
float_x64.v
gated_array_string_test.v all: support slices with negative indexes `#[start..end]` (gated arrays) (#12914) 2021-12-22 16:34:02 +03:00
int.v
int_test.v
isnil_test.v
map.c.v builtin: move C. calls to .c.v files (#11164) 2021-08-12 21:46:38 +03:00
map.v
map_d_gcboehm_opt.v
map_of_floats_test.v vlib: remove deprecated map{} usages as well as deprecated functions (#11035) 2021-08-04 12:44:41 +03:00
map_test.v
option.c.v
option.v
prealloc.c.v
rune.v all: update copyright year 2022-01-04 12:21:12 +03:00
rune_test.v builtin: add a non allocating rune.length_in_bytes() method and tests for it 2021-12-01 16:35:13 +02:00
sorted_map.v
sorting_test.v
string.v builtin: s.trim_prefix/1 -> s.trim_string_left/1, s.trim_suffix/1 -> s.trim_string_right/1 2022-01-05 12:49:22 +02:00
string_charptr_byteptr_helpers.v
string_int_test.v builtin: fix {-7:08b} (interpolation of negative numbers with 0 padding), add tests 2021-12-04 13:11:05 +02:00
string_interpolation.v
string_match_glob_test.v
string_strip_margin_test.v all: update copyright year 2022-01-04 12:21:12 +03:00
string_test.v
utf8.c.v vlib: use `malloc_noscan()` where possible (#10465) 2021-06-15 14:47:11 +03:00
utf8.v
utf8_test.v

README.md

Description:

builtin is a module that is implicitly imported by every V program. It implements the builtin V types array, string, map. It also implements builtin functions like println, eprintln, malloc, panic, print_backtrace.

The autogenerated documentation for builtin functions is lacking, so for these functions, please refer to the official V documentation.