You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
550 B
13 lines
550 B
package cc |
|
|
|
const inTpl = `{{ $f := .Field -}}{{ $r := .Rules -}} |
|
{{- if $r.In }} |
|
if ({{ lookup $f "InLookup" }}.find(static_cast<decltype({{ lookup $f "InLookup" }})::key_type>({{ accessor . }})) == {{ lookup $f "InLookup" }}.end()) { |
|
{{ err . "value must be in list " $r.In }} |
|
} |
|
{{- else if $r.NotIn }} |
|
if ({{ lookup $f "NotInLookup" }}.find(static_cast<decltype({{ lookup $f "NotInLookup" }})::key_type>({{ accessor . }})) != {{ lookup $f "NotInLookup" }}.end()) { |
|
{{ err . "value must not be in list " $r.NotIn }} |
|
} |
|
{{- end }} |
|
`
|
|
|