VoltDB.ThirdParty.Math.BigDecimal.MovePointLeft C# (CSharp) Method

MovePointLeft() public method

public MovePointLeft ( int n ) : BigDecimal
n int
return BigDecimal
        public BigDecimal MovePointLeft(int n)
        {
            if (n >= 0)
                return new BigDecimal(_BigIntegerNumber, _Scale + n);
            else
                return MovePointRight(-n);
        }