diff options
author | iurii plugatarov <[email protected]> | 2024-07-29 19:07:17 +0200 |
---|---|---|
committer | iurii plugatarov <[email protected]> | 2024-07-29 19:07:17 +0200 |
commit | e53093139c07804b99ac05689ebc6695b47ff919 (patch) | |
tree | 319e609aaefef9108bd1e038eb5a72fd181497d7 /src/containers/stack.zig | |
parent | 7308e671267a788d89ddebf4e0efba9392979cad (diff) | |
download | dsazitty-e53093139c07804b99ac05689ebc6695b47ff919.tar.gz |
bst
Diffstat (limited to '')
-rw-r--r-- | src/containers/stack.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/containers/stack.zig b/src/containers/stack.zig index e783665..1e4c3e1 100644 --- a/src/containers/stack.zig +++ b/src/containers/stack.zig @@ -2,6 +2,7 @@ const std = @import("std"); const Allocator = std.mem.Allocator; const testing = std.testing; +// Linked list based stack implementation pub fn Node(comptime T: type) type { return struct { const Self = @This(); |