/** * Implements the CFML Function bitxor */ package railo.runtime.functions.math; import railo.runtime.PageContext; import railo.runtime.ext.function.Function; public final class BitXor implements Function { public static double call(PageContext pc , double number, double number2) { return (int)number^(int)number2; } }