Package mikera.indexz.impl

Examples of mikera.indexz.impl.ComputedIndex


  @Test public void genericTests() {
    doTests(Indexz.createProgression(10, 4, 2));
    doTests(Indexz.createLength(0));
    doTests(Indexz.createRandomPermutation(20));

    ComputedIndex ci=new ComputedIndex(4) {
      @Override
      public int get(int i) {
        return length-1-i;
     
    };
View Full Code Here

TOP

Related Classes of mikera.indexz.impl.ComputedIndex

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.