v/vlib/io
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
..
util Making string index methods follow the same standard 2022-03-17 09:27:11 -03:00
README.md docs: adding skeleton README.md files for all vlib modules (#13034) 2022-01-05 18:06:08 +02:00
buffered_reader.v vlib: add `mut` for the first parameter of builtin.copy, arrays.copy and crypto (#13702) 2022-03-09 20:26:00 +02:00
custom_string_reading_test.v vlib: add `mut` for the first parameter of builtin.copy, arrays.copy and crypto (#13702) 2022-03-09 20:26:00 +02:00
io.v checker: add an interface check for mutability, fixes #1081, fixes #7038 (#11963) 2021-10-11 15:41:31 +03:00
io_cp_test.v checker: add an interface check for mutability, fixes #1081, fixes #7038 (#11963) 2021-10-11 15:41:31 +03:00
io_test.v vlib: add `mut` for the first parameter of builtin.copy, arrays.copy and crypto (#13702) 2022-03-09 20:26:00 +02:00
multi_writer.v io: mark the mutability requirements of the Writer interface explicitly; swap the io.cp/2 parameter order to be like os.cp/2 (#10091) 2021-05-13 13:06:42 +03:00
multi_writer_test.v io: mark the mutability requirements of the Writer interface explicitly; swap the io.cp/2 parameter order to be like os.cp/2 (#10091) 2021-05-13 13:06:42 +03:00
os_file_reader_test.v io: deprecate io.make_reader (not needed anymore) 2021-05-13 10:26:26 +03:00
reader.v io: pub the RandomReader interface (#12222) 2021-10-18 10:51:36 +03:00
reader_test.v vlib: add `mut` for the first parameter of builtin.copy, arrays.copy and crypto (#13702) 2022-03-09 20:26:00 +02:00
readerwriter.v io: cleanup ReaderWriter interface (#12218) 2021-10-17 19:39:51 +03:00
writer.v checker: add an interface check for mutability, fixes #1081, fixes #7038 (#11963) 2021-10-11 15:41:31 +03:00

README.md

Description:

io provides common interfaces for buffered reading/writing of data.