Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for ForwardingValueGraph (0.32 seconds)

  1. android/guava/src/com/google/common/graph/ForwardingValueGraph.java

     * not currently planned to be released as a general-purpose forwarding class.
     *
     * @author James Sexton
     * @author Joshua O'Madadhain
     */
    abstract class ForwardingValueGraph<N, V> extends AbstractValueGraph<N, V> {
    
      abstract ValueGraph<N, V> delegate();
    
      @Override
      public Set<N> nodes() {
        return delegate().nodes();
      }
    
      /**
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 2.8K bytes
    - Click Count (0)
Back to Top