DVUI

Parameters

#
self:*Selection
*Selection

Source

Implementation

#
pub fn order(self: *Selection) void {
        if (self.end < self.start) {
            const tmp = self.start;
            self.start = self.end;
            self.end = tmp;
        }
    }