MCPcopy Create free account
hub / github.com/grpc/grpc-java / bitSetOfRange

Method bitSetOfRange

api/src/test/java/io/grpc/UriTest.java:805–811  ·  view source on GitHub ↗
(char from, char to)

Source from the content-addressed store, hash-verified

803 }
804
805 private static BitSet bitSetOfRange(char from, char to) {
806 BitSet bitset = new BitSet();
807 for (char c = from; c <= to; c++) {
808 bitset.set(c);
809 }
810 return bitset;
811 }
812
813 private static BitSet bitSetOf(char... chars) {
814 BitSet bitset = new BitSet();

Calls 1

setMethod · 0.65

Tested by

no test coverage detected