pop
Function parameters
Parameters
- self:*@This()
Functions in this namespace
Functions
- pushWithStateAssumeCapacity
- Standalone function for working with a fixed-size buffer.
- peekWithState
- Standalone function for working with a fixed-size buffer.
- popWithState
- Standalone function for working with a fixed-size buffer.
Source
Implementation
pub fn pop(self: *@This()) u1 {
return popWithState(self.bytes.items, &self.bit_len);
}