public static BigUInt <N> LeftShift(BigUInt <N> n, int sft)
        {
            BigUInt <N> ret = n.Copy();

            ret.LeftShift(sft);

            return(ret);
        }