alsoIt
const numbers = mutableListOf<string>("one", "two", "three");
numbers
.alsoIt(it => console.log(`The list elements before adding new one: ${it}`))
.push("four");Last updated
const numbers = mutableListOf<string>("one", "two", "three");
numbers
.alsoIt(it => console.log(`The list elements before adding new one: ${it}`))
.push("four");Last updated