view src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/NodePath.java @ 98:95000ff9064d

Create Query
author one
date Tue, 09 Sep 2014 16:23:01 +0900
parents 1c91c4357228
children 5b7e45464bb8
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();
}