Len() -> RuneLength()
parent
2129573f6d
commit
164657caf8
|
@ -1,31 +1,31 @@
|
||||||
package utf8
|
package utf8
|
||||||
|
|
||||||
// Len returns the number of bytes in a UTF-8 encoding of this Unicode code point.
|
// RuneLength returns the number of bytes in a UTF-8 encoding of this Unicode code point.
|
||||||
//
|
//
|
||||||
// Example
|
// Example
|
||||||
//
|
//
|
||||||
// length := utf8.Len('A')
|
// length := utf8.RuneLength('A')
|
||||||
//
|
//
|
||||||
// // length == 1
|
// // length == 1
|
||||||
//
|
//
|
||||||
// Example
|
// Example
|
||||||
//
|
//
|
||||||
// length := utf8.Len('r')
|
// length := utf8.RuneLength('r')
|
||||||
//
|
//
|
||||||
// // length == 1
|
// // length == 1
|
||||||
//
|
//
|
||||||
// Example
|
// Example
|
||||||
//
|
//
|
||||||
// length := utf8.Len('¡')
|
// length := utf8.RuneLength('¡')
|
||||||
//
|
//
|
||||||
// // length == 2
|
// // length == 2
|
||||||
//
|
//
|
||||||
// Example
|
// Example
|
||||||
//
|
//
|
||||||
// length := utf8.Len('۵')
|
// length := utf8.RuneLength('۵')
|
||||||
//
|
//
|
||||||
// // length == 2
|
// // length == 2
|
||||||
func Len(r rune) int {
|
func RuneLength(r rune) int {
|
||||||
|
|
||||||
switch {
|
switch {
|
||||||
case 127 >= r:
|
case 127 >= r:
|
Loading…
Reference in New Issue