Cur represents a type-aware cursor for accessing fields in a tuple.
| 75 | |
| 76 | // Cur represents a type-aware cursor for accessing fields in a tuple. |
| 77 | type Cur struct { |
| 78 | t Typ |
| 79 | tup []interface{} |
| 80 | } |
| 81 | |
| 82 | func (c Cur) get(f string) interface{} { |
| 83 | t, tup := c.t, c.tup |
nothing calls this directly
no outgoing calls
no test coverage detected