selectAll
Parameters
- self:*Selection
- *Selection
Source
Implementation
pub fn selectAll(self: *Selection) void {
self.start = 0;
self.cursor = 0;
self.end = std.math.maxInt(usize);
}Source
pub fn selectAll(self: *Selection) void {
self.start = 0;
self.cursor = 0;
self.end = std.math.maxInt(usize);
}