VoltDB.ThirdParty.Math.BigDecimal.MovePointLeft C# (CSharp) Méthode

MovePointLeft() public méthode

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