MCPcopy Index your code
hub / github.com/antlr/codebuff / build

Method build

output/java_guava/1.4.17/ImmutableSet.java:531–538  ·  view source on GitHub ↗

Returns a newly-created ImmutableSet based on the contents of the Builder.

()

Source from the content-addressed store, hash-verified

529 */
530
531 @Override
532 public ImmutableSet<E> build() {
533 ImmutableSet<E> result = construct(size, contents);
534 // construct has the side effect of deduping contents, so we update size
535 // accordingly.
536 size = result.size();
537 return result;
538 }
539 }
540}

Callers 1

copyOfMethod · 0.45

Calls 2

sizeMethod · 0.65
constructMethod · 0.45

Tested by

no test coverage detected