JakubSzark / zig-string

A String Library made for Zig
MIT License
370 stars 27 forks source link

Introduce C ABI compatible layer #10

Open thechampagne opened 1 year ago

thechampagne commented 1 year ago

I wrote an interface to make the library accessible by any language that support C FFI. link 👍

thechampagne commented 1 year ago

Does .capacity() and .size have the same value ?

liummistaken commented 1 year ago

Does .capacity() and .size have the same value ?

No, it's more like ArrayList's capacity vs len, capacity is the allocated storage len, size == how much actual content is in it. See methods like .removeRange()