11 lines
345 B
Plaintext
11 lines
345 B
Plaintext
|
func (s {{.Node.Name}}) {{.Field.Name|title}}() uint{{.Bits}} {
|
||
|
{{template "_checktag" . -}}
|
||
|
return s.Struct.Uint{{.Bits}}({{.Offset}}){{with .Default}} ^ {{.}}{{end}}
|
||
|
}
|
||
|
|
||
|
func (s {{.Node.Name}}) Set{{.Field.Name|title}}(v uint{{.Bits}}) {
|
||
|
{{template "_settag" . -}}
|
||
|
s.Struct.SetUint{{.Bits}}({{.Offset}}, v{{with .Default}}^{{.}}{{end}})
|
||
|
}
|
||
|
|