
ru.hnau.jutils.collections.StackUtils.kt Maven / Gradle / Ivy
The newest version!
package ru.hnau.jutils.collections
import java.util.*
fun Stack.popOrNull() = synchronized(this) { if (empty()) null else pop() }
fun Stack.peekOrNull() = synchronized(this) { if (empty()) null else peek() }
© 2015 - 2025 Weber Informatics LLC | Privacy Policy