Function swap [src]
Prototype
pub fn swap(comptime T: type, a: *T, b: *T) void
Parameters
T: type
a: *T
b: *T
Source
pub fn swap(comptime T: type, a: *T, b: *T) void {
const tmp = a.*;
a.* = b.*;
b.* = tmp;
}
pub fn swap(comptime T: type, a: *T, b: *T) void
T: type
a: *T
b: *T
pub fn swap(comptime T: type, a: *T, b: *T) void {
const tmp = a.*;
a.* = b.*;
b.* = tmp;
}