| author | |
| committer | |
| log | c97d64b677eb891144fb356e1f4b9011c60cc0e2 |
| tree | 88fdda2dd4debe570e5c1189f39e1e98498f0dce |
| parent | 349df40d14a3a66c1cbfd7ebacc4adac3ce29f46 |
1 files changed, 0 insertions(+), 2 deletions(-)
lib/std/linked_list.zig-2| ... | ... | @@ -2,8 +2,6 @@ const std = @import("std.zig"); |
| 2 | 2 | const debug = std.debug; |
| 3 | 3 | const assert = debug.assert; |
| 4 | 4 | const testing = std.testing; |
| 5 | const mem = std.mem; | |
| 6 | const Allocator = mem.Allocator; | |
| 7 | 5 | |
| 8 | 6 | /// A singly-linked list is headed by a single forward pointer. The elements |
| 9 | 7 | /// are singly linked for minimum space and pointer manipulation overhead at |