Example #1
0
        public unsafe static Int256 operator /(Int256 left, Int256 right)
        {
            Int256 result = default;

            BigIntArithmetic.Div(&left.low, &right.low, &result.low, Size64);
            return(result);
        }
Example #2
0
        public unsafe static UInt128 operator /(UInt128 left, UInt128 right)
        {
            UInt128 result = default;

            BigIntArithmetic.Div(&left.low, &right.low, &result.low, Size64);
            return(result);
        }