Skip to content

SpecialValueMatch🔗

Special value types supported by the SpecialValueMap

Definition🔗

type SpecialValueMatch string
const (
    SpecialValueMatchTrue SpecialValueMatch = "true"
    SpecialValueMatchFalse SpecialValueMatch = "false"
    SpecialValueMatchNull SpecialValueMatch = "null"
    SpecialValueMatchNaN SpecialValueMatch = "nan"
    SpecialValueMatchNullAndNan SpecialValueMatch = "null+nan"
    SpecialValueMatchEmpty SpecialValueMatch = "empty"
)