View Javadoc

1   package org.lcsim.event;
2   
3   import java.util.List;
4   
5   /**
6    * 
7    * @author tonyj
8    */
9   public interface IntVec extends List<Integer> {
10      int[] toIntArray();
11  }