MCPcopy Index your code
hub / github.com/davidgiven/luje / subSequence

Method subSequence

lib/java/lang/String.java:1837–1839  ·  view source on GitHub ↗

Has the same result as the substring function, but is present so that string may implement the CharSequence interface. @param start the offset the first character. @param end the offset of one past the last character to include. @return the subsequence requested. @throws Index

(int start, int end)

Source from the content-addressed store, hash-verified

1835 * @since 1.4
1836 */
1837 public CharSequence subSequence(int start, int end) {
1838 return substring(start, end);
1839 }
1840
1841 /**
1842 * Retrieves the Unicode code point (character) value at the specified

Callers

nothing calls this directly

Calls 1

substringMethod · 0.95

Tested by

no test coverage detected