just wondering if there's an overload somewhere fo...
# announcements
m
just wondering if there's an overload somewhere for it
h
I don't think so, but it's trivial to implement:
Copy code
infix operator fun Int.times(s: String) = s.repeat(this)
infix operator fun String.times(n: Int) = this.repeat(n)