Field returns the i'th field for 0 <= i < NumFields().
(i int)
| 43 | |
| 44 | // Field returns the i'th field for 0 <= i < NumFields(). |
| 45 | func (s *Struct) Field(i int) *Var { return s.fields[i] } |
| 46 | |
| 47 | // Tag returns the i'th field tag for 0 <= i < NumFields(). |
| 48 | func (s *Struct) Tag(i int) string { |
no outgoing calls