comparison src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/core/Children.java @ 41:ed6737db637a

added tests
author Shoshi TAMAKI
date Tue, 29 Jan 2013 23:42:54 +0900
parents 3dfa0be90a0d
children fb1dc448ac8c
comparison
equal deleted inserted replaced
40:6decea87ef88 41:ed6737db637a
1 package jp.ac.u_ryukyu.ie.cr.shoshi.jungle.core; 1 package jp.ac.u_ryukyu.ie.cr.shoshi.jungle.core;
2
3 import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.util.Either;
4 import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.util.Error;
2 5
3 public interface Children<T> extends Iterable<T> 6 public interface Children<T> extends Iterable<T>
4 { 7 {
8 public Either<Error,T> at(int _pos);
5 public int size(); 9 public int size();
6 } 10 }