Package org.cliffc.high_scale_lib

Examples of org.cliffc.high_scale_lib.LongIterator


  public void clear() { _map.clear(); }

  @Override
  public String toString() {
    // Overloaded to avoid auto-boxing
    final LongIterator it = longIterator();
    if (!it.hasNext()) {
      return "[]";
    }
    final StringBuilder sb = new StringBuilder().append('[');
    for (;;) {
      sb.append(it.next());
      if (!it.hasNext()) {
        return sb.append(']').toString();
      }
      sb.append(", ");
    }
  }
View Full Code Here

TOP

Related Classes of org.cliffc.high_scale_lib.LongIterator

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.