MCPcopy Create free account
hub / github.com/google/re2j / concatRunes

Method concatRunes

java/com/google/re2j/Parser.java:1724–1729  ·  view source on GitHub ↗
(int[] x, int[] y)

Source from the content-addressed store, hash-verified

1722 }
1723
1724 private static int[] concatRunes(int[] x, int[] y) {
1725 int[] z = new int[x.length + y.length];
1726 System.arraycopy(x, 0, z, 0, x.length);
1727 System.arraycopy(y, 0, z, x.length, y.length);
1728 return z;
1729 }
1730}

Callers 1

maybeConcatMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected