An open API service indexing awesome lists of open source software.

https://github.com/MINGtoMING/tiny_array_list

`TinyArrayList` is a modified version of `std.ArrayList` that initially uses a fixed-size inline buffer for data storage. It only transitions to heap memory when the data size surpasses the buffer capacity, effectively minimizing heap allocation overhead for small data sizes.
https://github.com/MINGtoMING/tiny_array_list

Last synced: about 1 year ago
JSON representation

`TinyArrayList` is a modified version of `std.ArrayList` that initially uses a fixed-size inline buffer for data storage. It only transitions to heap memory when the data size surpasses the buffer capacity, effectively minimizing heap allocation overhead for small data sizes.

Awesome Lists containing this project