view src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/NodePath.java @ 108:69bbf08894aa

move
author one
date Fri, 12 Sep 2014 21:53:52 +0900
parents 95000ff9064d
children 6e9a8d26e0cf
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();
}