view src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/NodePath.java @ 172:809f813d1083

minner change
author one
date Tue, 10 Feb 2015 11:28:39 +0900
parents b998fdc99bc0
children
line wrap: on
line source

package jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store;

import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.util.Pair;

public interface NodePath extends Iterable<Integer>
{
	public NodePath add(int pos);
	public Pair<Integer,NodePath> pop();
	public NodePath tail();
	public int size();
	public Pair<Integer,NodePath> last();
}