mirror of
https://github.com/neovim/neovim.git
synced 2026-03-26 02:20:55 +00:00
This macro is used to append an element to a growable array. It replaces this common idiom: ga_grow(&ga, 1); ((item_type *)ga.ga_data)[ga.ga_len] = item; ++ga.ga_len;