Example #1
0
        public static Int128 operator ^(Int128 a, Int128 b)
        {
            Int128 c;

            UInt128.ExclusiveOr(out c.v, ref a.v, ref b.v);
            return(c);
        }