Package gnu.trove

Examples of gnu.trove.TLinkableAdaptor


/*     */   }
/*     */
/*     */   public static Operation getLinkedListAddOp() {
/*  71 */     List data = new ArrayList(100000);
/*  72 */     for (int i = 0; i < 100000; i++) {
/*  73 */       data.add(new TLinkableAdaptor());
/*     */     }
/*     */
/*  77 */     return new Operation(data) { private final List val$data;
/*     */
/*  80 */       public void theirs() { List l = new LinkedList();
View Full Code Here


/*     */   {
/*     */     public Object create()
/*     */     {
/* 211 */       LinkedList list = new LinkedList();
/* 212 */       for (int i = 0; i < 1000; i++) {
/* 213 */         TLinkableAdaptor a = new TLinkableAdaptor();
/* 214 */         list.add(a);
/*     */       }
/* 216 */       return list;
/*     */     }
View Full Code Here

/*     */   {
/*     */     public Object create()
/*     */     {
/* 200 */       TLinkedList list = new TLinkedList();
/* 201 */       for (int i = 0; i < 1000; i++) {
/* 202 */         TLinkableAdaptor a = new TLinkableAdaptor();
/* 203 */         list.add(a);
/*     */       }
/* 205 */       return list;
/*     */     }
View Full Code Here

TOP

Related Classes of gnu.trove.TLinkableAdaptor

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.