com.github.krukow.clj_ds.PersistentStack Maven / Gradle / Ivy
package com.github.krukow.clj_ds;
public interface PersistentStack extends PersistentCollection {
PersistentStack zero();
PersistentStack plus(E o);
/**
* @return A new stack consisting of the current stack without its top
* element.
*/
PersistentStack minus();
/**
* @return The top element of this stack.
*/
E peek();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy