-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhex.go
36 lines (29 loc) · 894 Bytes
/
hex.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright (c) 2023-2024 Onur Cinar.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// https://github.com/cinar/checker
package v2
import (
"reflect"
)
const (
// nameHex is the name of the hex check.
nameHex = "hex"
)
var (
// ErrNotHex indicates that the given string contains hex characters.
ErrNotHex = NewCheckError("NOT_HEX")
)
// IsHex checks if the given string consists of only hex characters.
func IsHex(value string) (string, error) {
return IsRegexp("^[0-9a-fA-F]+$", value)
}
// isHex checks if the given string consists of only hex characters.
func isHex(value reflect.Value) (reflect.Value, error) {
_, err := IsHex(value.Interface().(string))
return value, err
}
// makeAlphanumeric makes a checker function for the alphanumeric checker.
func makeHex(_ string) CheckFunc[reflect.Value] {
return isHex
}