1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/builtin
2023-01-09 20:12:07 +02:00
..
js
linux_bare checker: add int signedness mismatch checking for function call arguments (#16750) 2022-12-24 06:28:35 +02:00
wasm_bare
array_d_gcboehm_opt.v builtin: optimise the initialisation of the common 1 byte element arrays []u8 2022-12-22 20:41:32 +02:00
array_flags_test.v
array_notd_gcboehm_opt.v
array_test.v
array.c.v
array.v cgen: minimise sizeof(EmptyStruct) to 0 for gcc/clang and to 1 for tcc/msvc, by changing EMPTY_STRUCT_DECLARATION and EMPTY_STRUCT_INITIALIZATION (#16733) 2022-12-22 21:47:39 +02:00
builtin_android_outside_termux.c.v
builtin_backtraces_d_musl.c.v
builtin_backtraces_nix.c.v
builtin_d_gcboehm.c.v
builtin_d_use_libbacktrace.c.v
builtin_ios.c.v
builtin_nix.c.v cgen: improve generated source compatibility with latest Alpine (lacking libexecinfo-dev and execinfo.h) and the prebuilt tcc (#16743) 2022-12-22 15:01:51 +02:00
builtin_notd_gcboehm.c.v
builtin_notd_use_libbacktrace.c.v
builtin_test.v
builtin_windows.c.v
builtin.c.v all: change optional to option (#16914) 2023-01-09 09:36:45 +03:00
builtin.v comptime: implement field.is_enum (#16920) 2023-01-09 20:12:07 +02:00
byte_test.v
cfns_wrapper.c.v builtin: support -d trace_vmemset, -d trace_vmemcmp, -d trace_vmemmove and -d trace_vmemcpy too 2022-12-22 20:08:53 +02:00
cfns.c.v
chan.v
float_test.v
float_x64.v
float.c.v
gated_array_string_test.v
int_test.v
int.v
isnil_test.v
map_d_gcboehm_opt.v cgen: minimise sizeof(EmptyStruct) to 0 for gcc/clang and to 1 for tcc/msvc, by changing EMPTY_STRUCT_DECLARATION and EMPTY_STRUCT_INITIALIZATION (#16733) 2022-12-22 21:47:39 +02:00
map_of_floats_test.v
map_test.v builtin: fix m.len to 0, after calling map.clear() (#16720) 2022-12-22 21:36:33 +02:00
map.c.v
map.v cgen: minimise sizeof(EmptyStruct) to 0 for gcc/clang and to 1 for tcc/msvc, by changing EMPTY_STRUCT_DECLARATION and EMPTY_STRUCT_INITIALIZATION (#16733) 2022-12-22 21:47:39 +02:00
option.c.v
option.v all: change optional to option (#16914) 2023-01-09 09:36:45 +03:00
prealloc.c.v
README.md
rune_test.v
rune.v
sorted_map.v
sorting_test.v
string_charptr_byteptr_helpers.v
string_int_test.v checker: more precise error handling of large binary literals like 0b1000_0000_0000_0000_0000_0000_0000_0000_0000_0000_0000_0000_0000_0000_0000_0000 (#16775) 2022-12-27 15:13:15 +02:00
string_interpolation.v checker: require unsafe for Struct(voidptr) casts 2023-01-06 09:28:11 +03:00
string_match_glob_test.v
string_strip_margin_test.v
string_test.v
string.v
utf8_test.v
utf8.c.v
utf8.v all: change optional to option (#16914) 2023-01-09 09:36:45 +03:00

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.