<!-- Our proposal process is documented here: https://go.dev/s/proposal-process --> Add a function like `math.Isqrt(n int) int`. Currently I implement this by ```go sort.Search(n, func(x int) bool { return x * x + 2 * x + 1 > n }) ``` but maybe this feature could be added to the standard library like `math.Ilogb`