Mojo function
round
round[T: Roundable, //](number: T) -> T
Get the rounded value of the given object.
Parameters:
- T (
Roundable
): The type conforming to Roundable.
Args:
- number (
T
): The object to get the rounded value of.
Returns:
The rounded value of the object.
round[T: Roundable, //](number: T, ndigits: Int) -> T
Get the value of this object, rounded to a specified number of digits after the decimal point.
Parameters:
- T (
Roundable
): The type conforming to Roundable.
Args:
- number (
T
): The object to get the rounded value of. - ndigits (
Int
): The number of digits to round to.
Returns:
The rounded value of the object.
Was this page helpful?
Thank you! We'll create more content like this.
Thank you for helping us improve!