This commit is contained in:
Mathijs Saey
2016-08-05 17:57:51 +02:00
parent 815a662eca
commit 2a84206e89

View File

@@ -360,7 +360,7 @@ proc `mod`*[T: float32|float64](x, y: T): T =
proc `^`*[T](x, y: T): T =
## Computes ``x`` to the power ``y`. ``x`` must be non-negative, use
## `pow <#pow,float,float>` for negative exponents.
assert y >= 0
assert y >= T(0)
var (x, y) = (x, y)
result = 1