v/vlib
Delyan Angelov 9b43713ec5
net: simplify TcpListener.accept, use `C.accept(l.sock.handle, 0, 0)`, since we do not care about the local address of the accepted connection
2022-04-12 11:47:41 +03:00
..
arrays cgen: fix alloc empty struct array error (#14007) 2022-04-11 14:16:09 +03:00
benchmark docs: add more documentation to each of the modules in vlib (#13043) 2022-01-07 13:28:50 +02:00
bitfield rand: simplify rand.PRNG, move to optional types for error handling (#13570) 2022-02-23 12:36:14 +02:00
builtin ci: fix toml segfault (remove unused low level builtin option IError.msg compatibility hack) 2022-04-11 21:49:59 +03:00
cli cli: add automatic manpage generation with -man (#13911) 2022-04-03 10:12:47 +03:00
clipboard clipboard: fix segfault when pasting to some X11 apps. Fixes #13891 (#13971) 2022-04-08 13:32:38 +03:00
compress
context context: make the examples in the vlib/context/README.md immediately runnable 2022-03-26 13:25:45 +02:00
crypto vlib: add `mut` for the first parameter of builtin.copy, arrays.copy and crypto (#13702) 2022-03-09 20:26:00 +02:00
darwin
datatypes datatypes.fsm: add a fsm_graph.v tool (#13723) 2022-03-13 11:40:03 +02:00
dl
dlmalloc
encoding encoding.csv: allow passing a custom delimiter to the `new_reader` function (#13910) 2022-04-03 19:13:43 +03:00
eventbus v.parser: prohibit redeclaration of builtin types (#10563) 2021-06-25 13:08:56 +03:00
flag all: replace "NB:" with "Note:" (docs/comments) 2022-03-06 20:01:22 +03:00
fontstash examples: reduce C. prefix usage, rename fontstash enums (#14011) 2022-04-11 22:23:06 +03:00
gg gg: document pub functions in text_rendering and m4/vector (#13961) 2022-04-06 19:34:02 +03:00
gx
hash
io vlib: add `mut` for the first parameter of builtin.copy, arrays.copy and crypto (#13702) 2022-03-09 20:26:00 +02:00
js
jsdom
json cgen: fix optional struct declarations for empty structs (#13970) 2022-04-08 14:51:37 +03:00
log
math math.big: wrap all asserts in module code (not in tests) in `$if debug {}` (#14012) 2022-04-12 09:38:53 +03:00
mssql
mysql
net net: simplify TcpListener.accept, use `C.accept(l.sock.handle, 0, 0)`, since we do not care about the local address of the accepted connection 2022-04-12 11:47:41 +03:00
orm all: replace "NB:" with "Note:" (docs/comments) 2022-03-06 20:01:22 +03:00
os test: save removing the nonexistent binary output for v fmt and v vet tests 2022-04-09 13:04:52 +03:00
pg
picoev
picohttpparser
rand rand: speed up MT19937RNG.u64 2022-04-10 13:07:35 +03:00
readline
regex
runtime
semver
sokol sokol: add support for compiling with `-d darwin_sokol_glcore33` on macos (#13885) 2022-03-31 16:52:21 +03:00
sqlite
stbi stbi: fixed panic when trying to load JPG (#13724) 2022-03-13 09:57:34 +02:00
strconv strconv: cleanup atof.c.v - use a ParserState enum, clarify comments 2022-04-11 12:01:47 +03:00
strings strings: cleanup unsafe casts in some of strings.Builder ops (#13819) 2022-03-25 00:07:15 +02:00
sync sync: document sync.thread_id() 2022-03-23 19:52:20 +02:00
szip
term test: save removing the nonexistent binary output for v fmt and v vet tests 2022-04-09 13:04:52 +03:00
time time: add missing doc string to parse.v (#13933) 2022-04-05 13:21:37 +03:00
toml toml: remove math import (used only for math.max and math.max_u32) 2022-04-11 10:22:31 +03:00
v cgen: fix deadlock when returning multiple values in lock (#14014) 2022-04-12 09:21:27 +03:00
vweb cgen: fix `.filter()` and `.map()` on shared arrays (#13954) 2022-04-07 18:05:11 +03:00
x x: add a mostly empty vlib/x/x.v file, to workaround a `v doc` bug 2022-03-15 20:19:39 +02:00
.vdocignore
README.md

README.md

vlib Documentation

vlib is the term for all modules included by default with V and maintained as part of the V source code repository.

Some included modules depend on third party libraries, and these are kept separate in the thirdparty directory at the root level of the source repository.