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

com.github.uscexp.grappa.extension.util.IStack Maven / Gradle / Ivy

The newest version!
package com.github.uscexp.grappa.extension.util;

import java.util.List;

/**
 * @author haui
 *
 * @param 
 */
public interface IStack extends Iterable, List {

	E push(E item);

	E pop();

	E peek();

	boolean empty();

	int search(Object o);

	boolean isEmpty();
	
	void clear();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy