ACSUtils Wiki

An ACS library for ZDoom-based ports

User Tools

Site Tools


swap

swap()

any, any swap(any a, any b)

Returns two variables in reverse order. This function exists to improve readability when swapping the values of two variables.

Examples

Without swap():

int tmp = x;
x = y;
y = tmp;

With swap():

swap(x, y);
x = r1;
y = r2;
swap.txt · Last modified: 2019/09/05 23:42 by korshun