Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hi (0.15 sec)

  1. src/main/java/org/codelibs/core/text/Tokenizer.java

         * @param low
         *            最小の文字コード
         * @param hi
         *            最大の文字コード
         */
        protected static void whitespaceChars(final byte[] ctype2, int low, int hi) {
            if (low < 0) {
                low = 0;
            }
            if (hi >= ctype2.length) {
                hi = ctype2.length - 1;
            }
            while (low <= hi) {
                ctype2[low++] = CT_WHITESPACE;
            }
        }
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.6K bytes
    - Viewed (0)
Back to top