v/vlib/builtin
Alexander Medvednikov b49d873217 builtin: [1000]u8 fix 2022-04-15 14:48:39 +03:00
..
js all: byte => u8 2022-04-15 14:45:52 +03:00
linux_bare
wasm_bare builtin.wasm_bare: fix malloc invocation (#13740) 2022-03-15 12:55:39 +02:00
README.md
array.c.v
array.v all: make u8 the primary type, byte the alias 2022-04-15 13:43:03 +03:00
array_d_gcboehm_opt.v builtin: more byte => u8 2022-04-15 14:10:11 +03:00
array_notd_gcboehm_opt.v
array_shrinkage_test.v builtin: support a.flags.set(.noslices | .noshrink), use it in the particles example (#13818) 2022-03-24 23:37:13 +02:00
array_test.v builtin: add an `array.drop(n)` method (#13907) 2022-04-03 17:05:50 +03:00
builtin.c.v all: byte => u8 2022-04-15 14:45:52 +03:00
builtin.v
builtin_d_gcboehm.c.v
builtin_ios.c.v
builtin_nix.c.v builtin: [1000]u8 fix 2022-04-15 14:48:39 +03:00
builtin_notd_gcboehm.c.v all: replace "NB:" with "Note:" (docs/comments) 2022-03-06 20:01:22 +03:00
builtin_windows.c.v builtin: more byte=>u8 2022-04-15 13:55:56 +03:00
byte_test.v parser: warn about old use of `typeof` (#7923) 2021-01-07 20:32:02 +01:00
cfns.c.v all: byte => u8 2022-04-15 14:45:52 +03:00
cfns_wrapper.c.v
chan.v
float.c.v all: update copyright year 2022-01-04 12:21:12 +03:00
float_test.v all: replace "NB:" with "Note:" (docs/comments) 2022-03-06 20:01:22 +03:00
float_x64.v
gated_array_string_test.v
int.v all: byte => u8 2022-04-15 14:45:52 +03:00
int_test.v
isnil_test.v
map.c.v
map.v all: byte => u8 2022-04-15 14:45:52 +03:00
map_d_gcboehm_opt.v
map_of_floats_test.v
map_test.v checker: disallow 'small_unsigned == signed' (#13967) 2022-04-12 19:37:30 +03:00
option.c.v builtin: change IError `msg` and `code` to methods + fix vlib, add a deprecation notice for the old usages (#13041) 2022-02-11 15:52:33 +02:00
option.v all: byte => u8 2022-04-15 14:45:52 +03:00
prealloc.c.v all: byte => u8 2022-04-15 14:45:52 +03:00
rune.v all: byte => u8 2022-04-15 14:45:52 +03:00
rune_test.v
sorted_map.v
sorting_test.v
string.v all: byte => u8 2022-04-15 14:45:52 +03:00
string_charptr_byteptr_helpers.v all: replace "NB:" with "Note:" (docs/comments) 2022-03-06 20:01:22 +03:00
string_int_test.v
string_interpolation.v all: byte => u8 2022-04-15 14:45:52 +03:00
string_match_glob_test.v all: replace "NB:" with "Note:" (docs/comments) 2022-03-06 20:01:22 +03:00
string_strip_margin_test.v
string_test.v scanner: remove the restriction for \x00 in strings (#13493) 2022-02-16 23:41:05 +02:00
utf8.c.v all: byte => u8 2022-04-15 14:45:52 +03:00
utf8.v all: byte => u8 2022-04-15 14:45:52 +03: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.