Package com.github.krukow.clj_lang.PersistentStructMap

Examples of com.github.krukow.clj_lang.PersistentStructMap.Def


   
  }
 
  @Test
  public final void testStructMap() {
     Def def = PersistentStructMap.createSlotMap(
        new Cons("1", new Cons("2", new Cons("3",null))));
     PersistentStructMap<String, Integer> sm = PersistentStructMap.construct(def,
         new Cons(1,new Cons(2,new Cons(3,null))));
    
    for (int i=4;i<10000;i++) {
View Full Code Here

TOP

Related Classes of com.github.krukow.clj_lang.PersistentStructMap.Def

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.