Add returns a fieldSet containing the field.
(field field)
| 83 | |
| 84 | // Add returns a fieldSet containing the field. |
| 85 | func (s fieldSet) Add(field field) fieldSet { |
| 86 | return s.AddAll(field.AsSet()) |
| 87 | } |
| 88 | |
| 89 | // AddAll returns a fieldSet combining the other fieldSet. |
| 90 | func (s fieldSet) AddAll(other fieldSet) fieldSet { |
no test coverage detected