Method pow
pow(Int32, Int32)
Pushes the specified number x raised to the specified power y to the stack.
Declaration
public void pow(int x, int y)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | x | A System.Int32 value to be raised to a power. |
| System.Int32 | y | A System.Int32 value that specifies a power. |
pow(Int32)
Replaces the value on top of the stack with the power of this number to the specified power y.
Declaration
public void pow(int y)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | y | A System.Int32 value that specifies a power. |