commonMain.collections.Stack.kt Maven / Gradle / Ivy
package org.openrndr.collections
fun ArrayDeque.push(item: E) : E {
addLast(item)
return item
}
fun ArrayDeque.pop() : E {
return removeLast()
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy