v/vlib/builtin
Delyan Angelov 9344c27021
builtin: save a call to array.ensure_cap in array.insert, array.push, array.push_many in most cases
2022-02-02 11:01:07 +02:00
..
js builtin: fix warnings for tests inside vlib/builtin/js 2022-01-30 16:36:56 +02:00
linux_bare
wasm_bare
README.md builtin: add more documentation (#13160) 2022-01-14 17:27:38 +02:00
array.c.v
array.v builtin: save a call to array.ensure_cap in array.insert, array.push, array.push_many in most cases 2022-02-02 11:01:07 +02:00
array_d_gcboehm_opt.v
array_notd_gcboehm_opt.v
array_test.v builtin: add more documentation (#13160) 2022-01-14 17:27:38 +02:00
builtin.c.v
builtin.v
builtin_d_gcboehm.c.v
builtin_ios.c.v
builtin_nix.c.v
builtin_notd_gcboehm.c.v
builtin_windows.c.v
byte_test.v
cfns.c.v builtin: cleanup [trusted] tags for C function declarations 2022-01-25 19:31:40 +02:00
cfns_wrapper.c.v
chan.v
float.c.v
float_test.v
float_x64.v
gated_array_string_test.v
int.v builtin: add a `byterune` method on `[]byte` (#13145) 2022-01-13 22:26:17 +02:00
int_test.v
isnil_test.v
map.c.v
map.v
map_d_gcboehm_opt.v
map_of_floats_test.v
map_test.v
option.c.v
option.v
prealloc.c.v
rune.v
rune_test.v
sorted_map.v
sorting_test.v
string.v all: add string range OrExpr (#13189) 2022-01-17 13:03:10 +03:00
string_charptr_byteptr_helpers.v
string_int_test.v builtin: add a string.parse_int/2 method (wrapping strconv.parse_int/3) (#13164) 2022-01-14 00:31:11 +02:00
string_interpolation.v strings: rename Builder.write_b() to Builder.write_byte(), add deprecation (#13313) 2022-01-28 20:34:44 +02:00
string_match_glob_test.v
string_strip_margin_test.v
string_test.v all: add string range OrExpr (#13189) 2022-01-17 13:03:10 +03:00
utf8.c.v builtin: use a pure V version of string.to_wide() on != windows (#13314) 2022-01-28 20:41:50 +02:00
utf8.v builtin: add a `byterune` method on `[]byte` (#13145) 2022-01-13 22:26:17 +02:00
utf8_test.v builtin: use a pure V version of string.to_wide() on != windows (#13314) 2022-01-28 20:41:50 +02:00

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.