Would it be worth inlining this ``` fun Int.forma...
# announcements
j
Would it be worth inlining this
Copy code
fun Int.format(format: String): String {
    return String.format(format, this)
}
d
The JVM will probably inline it for you.