Return the name for a given parameter number and a boolean indicating if it was found.
(idx int)
| 17 | // Return the name for a given parameter number and a boolean indicating if it |
| 18 | // was found. |
| 19 | func (p *ParamSet) NameFor(idx int) (string, bool) { |
| 20 | name, ok := p.positionToName[idx] |
| 21 | return name, ok |
| 22 | } |
| 23 | |
| 24 | func (p *ParamSet) nextArgNum() int { |
| 25 | for { |