MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / stream

Method stream

reflection/pets/Creator.java:28–30  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

26 }
27 }
28 public Stream<Pet> stream() {
29 return Stream.generate(this);
30 }
31 public Pet[] array(int size) {
32 return stream().limit(size).toArray(Pet[]::new);
33 }

Callers 8

arrayMethod · 0.95
listMethod · 0.95
countMethod · 0.45
CounterMethod · 0.45
countMethod · 0.45
toStringMethod · 0.45
mainMethod · 0.45
mainMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected