VoltDB.Data.Client.VoltDecimal.MovePointLeft C# (CSharp) Method

MovePointLeft() public method

Moves the decimal point to the left (essentially: divide by 10^n)
public MovePointLeft ( int n ) : VoltDecimal
n int Number of digits to shift by.
return VoltDecimal
        public VoltDecimal MovePointLeft(int n)
        {
            return new VoltDecimal(this.Value.MovePointLeft(n));
        }