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

org.snapscript.common.Stack Maven / Gradle / Ivy

package org.snapscript.common;

public interface Stack extends Iterable{
   T pop();
   T peek();
   T get(int index);
   void push(T value);
   boolean contains(T value);
   boolean isEmpty();
   int size();
   void clear();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy