X7ROOT File Manager
Current Path:
/opt/golang/1.17.2/src/unicode
opt
/
golang
/
1.17.2
/
src
/
unicode
/
📁
..
📄
casetables.go
(755 B)
📄
digit.go
(352 B)
📄
digit_test.go
(1.54 KB)
📄
example_test.go
(4.11 KB)
📄
graphic.go
(4.35 KB)
📄
graphic_test.go
(2.55 KB)
📄
letter.go
(9.94 KB)
📄
letter_test.go
(14.79 KB)
📄
script_test.go
(2.95 KB)
📄
tables.go
(197.18 KB)
📁
utf16
📁
utf8
Editing: digit.go
// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package unicode // IsDigit reports whether the rune is a decimal digit. func IsDigit(r rune) bool { if r <= MaxLatin1 { return '0' <= r && r <= '9' } return isExcludingLatin(Digit, r) }
Upload File
Create Folder