fn Stack(comptime T: type) type
[src]
Many reader, many writer, non-allocating, thread-safe Uses a spinlock to protect push() and pop() When building in single threaded mode, this is a simple linked list.
fn Stack(comptime T: type) type
Many reader, many writer, non-allocating, thread-safe Uses a spinlock to protect push() and pop() When building in single threaded mode, this is a simple linked list.