mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 17:48:29 +08:00
[skip e2e] Add comment for isNumber (#13653)
Signed-off-by: dragondriver <jiquan.long@zilliz.com>
This commit is contained in:
parent
b8d3808052
commit
b0baff2249
@ -35,6 +35,7 @@ func isAlpha(c uint8) bool {
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// isNumber check if c is a number.
|
||||||
func isNumber(c uint8) bool {
|
func isNumber(c uint8) bool {
|
||||||
if c < '0' || c > '9' {
|
if c < '0' || c > '9' {
|
||||||
return false
|
return false
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user