```public inline fun maxOf(a: Int, b: Int): Int { ...
# stdlib
a
Copy code
public inline fun maxOf(a: Int, b: Int): Int {
    return Math.max(a, b)
}
are these slower than just calling
Math.max
directly? are these just syntactic sugar wrappers?