gitlab.com/evatix-go/core@v1.3.55/corevalidator/SliceValidatorParamsBase.go (about) 1 package corevalidator 2 3 type ValidatorParamsBase struct { 4 CaseIndex int 5 Header string 6 IsIgnoreCompareOnActualInputEmpty bool 7 IsAttachUserInputs bool 8 IsCaseSensitive bool 9 } 10 11 func (it ValidatorParamsBase) IsIgnoreCase() bool { 12 return !it.IsCaseSensitive 13 }