Join Slack
Powered by
```public inline fun maxOf(a: Int, b: Int): Int { ...
# stdlib
a
asad.awadia
03/06/2018, 11:42 PM
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?
2
Views
Open in Slack
Previous
Next