Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for newStringBuilderForCollection (0.09 seconds)

  1. android/guava/src/com/google/common/collect/Collections2.java

          }
        }
        return true;
      }
    
      /** An implementation of {@link Collection#toString()}. */
      static String toStringImpl(Collection<?> collection) {
        StringBuilder sb = newStringBuilderForCollection(collection.size()).append('[');
        boolean first = true;
        for (Object o : collection) {
          if (!first) {
            sb.append(", ");
          }
          first = false;
          if (o == collection) {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Sat Aug 09 01:14:59 GMT 2025
    - 22.6K bytes
    - Click Count (0)
Back to Top