Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for immutableGraphBuilder_appliesGraphBuilderConfig (0.15 seconds)

  1. guava-tests/test/com/google/common/graph/StandardImmutableGraphAdditionalTest.java

        Graph<String> graph2 = ImmutableGraph.copyOf(graph1);
    
        assertThat(graph2).isSameInstanceAs(graph1);
      }
    
      @Test
      public void immutableGraphBuilder_appliesGraphBuilderConfig() {
        ImmutableGraph<String> emptyGraph =
            GraphBuilder.directed()
                .allowsSelfLoops(true)
                .nodeOrder(ElementOrder.<String>natural())
                .immutable()
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 19 18:03:30 GMT 2024
    - 4.5K bytes
    - Click Count (0)
Back to Top