aboutsummaryrefslogtreecommitdiffstats
path: root/io_buffer.c
Commit message (Collapse)AuthorAgeFilesLines
* Add basic binary operators (and, or, xor, not) to `IO::Buffer`. (#5893)Samuel Williams2022-05-091-0/+405
|
* Fix rdoc of IO::Buffer [ci skip]Kazuhiro NISHIYAMA2022-05-091-14/+1
|
* Explicit handling of frozen strings in `IO::Buffer#for`. (#5892)Samuel Williams2022-05-091-25/+97
|
* io_buffer.c: use mremap based resizing only when mremap availableYuta Saito2022-01-071-1/+1
| | | | | some libc implementations (e.g. wasi-libc) define MREMAP_MAYMOVE, but don't have mremap itself, so guard the use of mremap by HAVE_MREMAP
* Remove UTF-8 from documentation.Samuel Williams2022-01-021-7/+0
|
* [DOC] Adjust IO::Buffer docs (#5374)Victor Shepelev2022-01-021-20/+57
|
* Fix typos [ci skip]Kazuhiro NISHIYAMA2021-12-251-1/+1
|
* Add fiber scheduler hooks for `pread`/`pwrite`, and add support to `IO::Buffer`.Samuel Williams2021-12-231-0/+173
|
* Extended interface for IO::Buffer & documentation.Samuel Williams2021-12-221-77/+735
|
* Rename IMMUTABLE to READONLY.Samuel Williams2021-12-211-27/+43
|
* Improve interface for get/set/copy.Samuel Williams2021-12-211-53/+116
|
* Fix handling of clear with offset and without length.Samuel Williams2021-12-211-1/+3
|
* Mark non-private mapped files as external.Samuel Williams2021-12-211-8/+7
|
* Default `IO::Buffer#get_string` to use BINARY encoding.Samuel Williams2021-12-211-1/+1
|
* Rename `to_str` -> `get_string` and add support for encodings.Samuel Williams2021-12-211-30/+32
|
* Improved exception usage/classes.Samuel Williams2021-12-211-20/+26
|
* Fix handling of frozens strings.Samuel Williams2021-12-211-1/+6
|
* Fix mapping invalid non-file object.Samuel Williams2021-12-211-0/+3
|
* Improve IO::Buffer resize and introduce ownership transfer.Samuel Williams2021-12-201-41/+149
|
* Default size for IO::Buffer.Samuel Williams2021-12-191-4/+38
|
* Fix spelling of DECLAIR_TYPE.Samuel Williams2021-12-191-24/+24
|
* Adjust formatNobuyoshi Nakada2021-11-211-10/+21
|
* Validate string type when constructing IO::Buffer for string mapping.Samuel Williams2021-11-171-0/+2
|
* Fix 32-bit conversions in IO::Buffer implementation.Samuel Williams2021-11-171-5/+18
|
* Rework implementation of `IO::Buffer.for(string)` to use string locking.Samuel Williams2021-11-121-0/+20
|
* More immutability and locking tests.Samuel Williams2021-11-121-4/+7
|
* Commit miss [ci skip]Nobuyoshi Nakada2021-11-101-3/+3
|
* Fix format specifierNobuyoshi Nakada2021-11-101-1/+1
|
* size_t is not for file sizeNobuyoshi Nakada2021-11-101-62/+116
|
* Mark IO::Buffer as experimental.Samuel Williams2021-11-101-0/+18
|
* IO::Buffer for scheduler interface.Samuel Williams2021-11-101-0/+1024