v/vlib/encoding
Tarcisio Gruppi 23dc85d94d
Making string index methods follow the same standard
All string index methods that end with `_opt` return `?int` with none as
the value when the substring is not found
and the index methods that do not end in `_opt` return `int` with -1 as
the returned value when the substring is not found
2022-03-17 09:27:11 -03:00
..
base58 vlib: add `mut` for the first parameter of builtin.copy, arrays.copy and crypto (#13702) 2022-03-09 20:26:00 +02:00
base64 all: update copyright year 2022-01-04 12:21:12 +03:00
binary all: update copyright year 2022-01-04 12:21:12 +03:00
csv Making string index methods follow the same standard 2022-03-17 09:27:11 -03:00
hex encoding.hex: fix shift warning 2022-02-04 15:16:08 +02:00
utf8 utf8: fix typo in utf8_util.v (#13624) 2022-03-01 19:06:48 +02:00
README.md docs: adding skeleton README.md files for all vlib modules (#13034) 2022-01-05 18:06:08 +02:00

README.md

Description:

encoding is a namespace for different formats/protocols encoding/decoding, like csv, utf8, base64 etc.