aboutsummaryrefslogtreecommitdiff
path: root/lib/std/array_list_sentineled.zig
AgeCommit message (Collapse)Author
2020-04-02new ArrayList API: fix std.ArrayListSentineledxackus
2020-04-01(breaking) std.Buffer => std.ArrayListSentineled(u8, 0)Andrew Kelley
This new name (and the fact that it is a function returning a type) will make it more clear which use cases are better suited for ArrayList and which are better suited for ArrayListSentineled. Also for consistency with ArrayList, * `append` => `appendSlice` * `appendByte` => `append` Thanks daurnimator for pointing out the confusion of std.Buffer.