- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for DecodeLastRune (0.25 seconds)
-
src/bytes/bytes.go
} for i := len(s); i > 0; { r, size := utf8.DecodeLastRune(s[:i]) i -= size if r == cr { return i } } return -1 } for i := len(s); i > 0; { r := rune(s[i-1]) if r < utf8.RuneSelf { if bytealg.IndexByteString(chars, s[i-1]) >= 0 { return i - 1 } i-- continue } r, size := utf8.DecodeLastRune(s[:i]) i -= size if r != utf8.RuneError {
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Mar 12 17:56:55 GMT 2026 - 36.3K bytes - Click Count (0) -
src/bytes/bytes_test.go
for o < len(buf) { o += copy(buf[o:], uchars) } // Make space for the needle rune at the end of buf. m := utf8.RuneLen(needle) for o := m; o > 0; { _, sz := utf8.DecodeLastRune(buf) copy(buf[len(buf)-sz:], "\x00\x00\x00\x00") buf = buf[:len(buf)-sz] o -= sz } buf = utf8.AppendRune(buf[:n-m], needle) n -= m // adjust for rune len for i := 0; i < b.N; i++ {
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Wed Mar 11 03:07:05 GMT 2026 - 62.9K bytes - Click Count (0) -
api/go1.txt
pkg unicode/utf8, const MaxRune ideal-char pkg unicode/utf8, const RuneError ideal-char pkg unicode/utf8, const RuneSelf ideal-int pkg unicode/utf8, const UTFMax ideal-int pkg unicode/utf8, func DecodeLastRune([]uint8) (int32, int) pkg unicode/utf8, func DecodeLastRuneInString(string) (int32, int) pkg unicode/utf8, func DecodeRune([]uint8) (int32, int) pkg unicode/utf8, func DecodeRuneInString(string) (int32, int)
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Wed Aug 14 18:58:28 GMT 2013 - 1.7M bytes - Click Count (0)