nickpelling / C_STD

C implementation of the standard container library
MIT License
18 stars 1 forks source link

Implementations of insert_after and insert_before should take a std_linear_series_t as their parameter #46

Closed nickpelling closed 5 months ago

nickpelling commented 5 months ago

i.e. the external client API should be the same, but the stdlib calls should use a std_linear_series_t internally. This should allow insert_before, prepend_before, insert_after, append_reversed_after to be wrapped around the same core functions.

nickpelling commented 5 months ago

Done.