package
1.0.0
Repository: https://github.com/tiendc/go-validator.git
Documentation: pkg.go.dev

# Functions

KeyIn checks map keys must be in a list.
KeyNotIn checks map keys must be not in a list.
KeyRange checks map keys must be in a range (applies to key type string and number only).
Len checks map size must be in a range.
ValueIn checks map values must be in a list.
ValueNotIn checks map values must be not in a list.
ValueRange checks map values must be in a range (applies to value type string and number only).
ValueUnique checks map values must be unique.