v/vlib/builtin
Delyan Angelov cd5c9a83c5
builtin: add missing panic_result_not_set/1 callback function.
2022-05-04 11:52:31 +02:00
..
js docs: document more `builtin` functions/methods (#14229) 2022-04-30 16:26:28 +02:00
linux_bare ci: fix more test-all failures 2022-04-17 12:14:31 +02:00
wasm_bare all: byte => u8 2022-04-17 12:14:27 +02:00
README.md
array.c.v
array.v
array_d_gcboehm_opt.v
array_notd_gcboehm_opt.v
array_shrinkage_test.v
array_test.v parser: fix inline array's element access (#14253) 2022-05-04 11:52:30 +02:00
builtin.c.v builtin: add missing panic_result_not_set/1 callback function. 2022-05-04 11:52:31 +02:00
builtin.v
builtin_d_gcboehm.c.v builtin: fix `-cc gcc -gc boehm` on linux and macos (#14115) 2022-04-21 10:34:34 +02:00
builtin_ios.c.v
builtin_nix.c.v
builtin_notd_gcboehm.c.v
builtin_windows.c.v builtin: ignore C++ 0xE06D7363 exception errors on windows (#14225) 2022-04-29 21:38:24 +02:00
byte_test.v
cfns.c.v builtin: define atoi & ftell 2022-04-29 21:38:24 +02:00
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
float_test.v
float_x64.v
gated_array_string_test.v
int.v docs: document more `builtin` functions/methods (#14229) 2022-04-30 16:26:28 +02:00
int_test.v ci: add test_byte_vs_u8 to int_test.v 2022-04-17 12:14:32 +02:00
isnil_test.v
map.c.v
map.v all: byte => u8 2022-04-17 12:14:26 +02:00
map_d_gcboehm_opt.v
map_of_floats_test.v
map_test.v checker: error if smaller signed == unsigned (#14078) 2022-04-25 19:07:30 +02:00
option.c.v
option.v all: rename result to _result (#14232) 2022-04-30 16:26:28 +02:00
prealloc.c.v
rune.v
rune_test.v
sorted_map.v
sorting_test.v
string.v builtin: add `string.len_utf8()` method (#14208) 2022-04-29 21:38:24 +02:00
string_charptr_byteptr_helpers.v
string_int_test.v
string_interpolation.v
string_match_glob_test.v
string_strip_margin_test.v
string_test.v builtin: add `string.len_utf8()` method (#14208) 2022-04-29 21:38:24 +02:00
utf8.c.v
utf8.v builtin: add `string.len_utf8()` method (#14208) 2022-04-29 21:38:24 +02:00
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.