Versions in this module Expand all Collapse all v1 v1.0.0 Mar 7, 2026 Changes in this version + type Errors map[string][]string + func (e Errors) Add(field, message string) + func (e Errors) First(field string) string + func (e Errors) HasErrors() bool + type Validator struct + func New() *Validator + func (v *Validator) Confirmed(field, value, confirmation string) *Validator + func (v *Validator) Email(field, value string) *Validator + func (v *Validator) Errors() Errors + func (v *Validator) IP(field, value string) *Validator + func (v *Validator) In(field, value string, allowed []string) *Validator + func (v *Validator) Matches(field, value, pattern string) *Validator + func (v *Validator) MaxLength(field, value string, max int) *Validator + func (v *Validator) MinLength(field, value string, min int) *Validator + func (v *Validator) Required(field, value string) *Validator + func (v *Validator) URL(field, value string) *Validator + func (v *Validator) Valid() bool Other modules containing this package github.com/RAiWorks/RapidGo/v2