This static class provides pretty wide range of additional math functionality.
Available methods
public static string ToRoundedString(this float _value, int _digits = 1)
This extension method creates string from given float number, rounded to certain count of digits after dot symbol.
Example:
Debug.Log($"First 3 digits of PI: {Mathf.PI.ToRoundedString(2)});
// Output: 3.14
public static string ToShortenedNumber(this int number)
This extension method returns shortened representation of given integer number. For example, 10.000 will be converted to "10k" and 1.500.000 will be converted to "1,5M".