times

operator fun List<Int>.times(by: Int): List<Int>

USAGE listOf(1, 2, 3) * 4 gives you 4, 8, 12