aboutsummaryrefslogtreecommitdiff
path: root/lib/std/array_list_sentineled.zig
AgeCommit message (Collapse)Author
2020-11-07remove deprecated uses of ArrayList.spanJosh Holland
2020-08-20add license header to all std lib filesAndrew Kelley
add SPDX license identifier copyright ownership is zig contributors
2020-07-11run zig fmt on std lib and self hostedVexu
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.