Package com.github.krukow.clj_lang

Examples of com.github.krukow.clj_lang.AFn


    //Checking all states up to: N
    for (int i = 0; i < N; i++) {
      vec = vec.cons(i);
     
    }
    IPersistentVector vector = PersistentVector.vectormap(new AFn() {
      @Override
      public Object invoke(Object arg1) {
        Integer s = (Integer )arg1;
        return s.intValue()*2;
      }
 
View Full Code Here

TOP

Related Classes of com.github.krukow.clj_lang.AFn

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.