Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ForwardingGraph (0.19 sec)

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

      // NOTE: this should work as long as the delegate graph's implementation of edges() (like that of
      // AbstractGraph) derives its behavior from calling successors().
      private static class TransposedGraph<N> extends ForwardingGraph<N> {
        private final Graph<N> graph;
    
        TransposedGraph(Graph<N> graph) {
          this.graph = graph;
        }
    
        @Override
        Graph<N> delegate() {
          return graph;
        }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 21.2K bytes
    - Viewed (0)
Back to top