module ppc.utils;

public static ubyte[] Combine(ubyte[] to, ubyte[] from) {
	return to ~ from;
}