All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.collections.Stack.kt Maven / Gradle / Ivy

There is a newer version: 0.4.5-alpha6
Show newest version
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