view src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/NodePath.java @ 135:6e9a8d26e0cf

refactor
author one
date Fri, 24 Oct 2014 18:49:48 +0900
parents 5b7e45464bb8
children b998fdc99bc0
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();
}