Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for StandardImplForwardingCollection (0.11 sec)

  1. android/guava-tests/test/com/google/common/collect/ForwardingCollectionTest.java

     * @author Louis Wasserman
     */
    @NullUnmarked
    public class ForwardingCollectionTest extends TestCase {
      static final class StandardImplForwardingCollection<T> extends ForwardingCollection<T> {
        private final Collection<T> backingCollection;
    
        StandardImplForwardingCollection(Collection<T> backingCollection) {
          this.backingCollection = backingCollection;
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 20:34:52 UTC 2025
    - 4.8K bytes
    - Viewed (1)
Back to top