Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for toChar (0.14 sec)

  1. android/guava/src/com/google/common/escape/Escapers.java

            // char[] each time it is invoked. However this avoids any
            // synchronization issues and makes the escaper thread safe.
            char[] surrogateChars = new char[2];
            Character.toChars(cp, surrogateChars, 0);
            char[] hiChars = escaper.escape(surrogateChars[0]);
            char[] loChars = escaper.escape(surrogateChars[1]);
    
            // If either hiChars or lowChars are non-null, the CharEscaper is trying
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 26 20:07:17 GMT 2023
    - 10.5K bytes
    - Viewed (0)
Back to top