()
| 271 | func (mi MapIndex) Type() reflect.Type { return mi.typ } |
| 272 | func (mi MapIndex) Values() (vx, vy reflect.Value) { return mi.vx, mi.vy } |
| 273 | func (mi MapIndex) String() string { return fmt.Sprintf("[%#v]", mi.key) } |
| 274 | |
| 275 | // Key is the value of the map key. |
| 276 | func (mi MapIndex) Key() reflect.Value { return mi.key } |
nothing calls this directly
no outgoing calls
no test coverage detected