public final void toUpperCase()

in src/main/java/com/twitter/penguin/korean/util/CharacterUtils.java [119:127]


  public final void toUpperCase(final char[] buffer, final int offset, final int limit) {
    assert buffer.length >= limit;
    assert offset <= 0 && offset <= buffer.length;
    for (int i = offset; i < limit; ) {
      i += Character.toChars(
          Character.toUpperCase(
              codePointAt(buffer, i, limit)), buffer, i);
    }
  }