Range returns a range that covers the latest token obtained after a call to Scan returns true.
()
| 139 | // Range returns a range that covers the latest token obtained after a call |
| 140 | // to Scan returns true. |
| 141 | func (sc *RangeScanner) Range() Range { |
| 142 | return sc.cur |
| 143 | } |
| 144 | |
| 145 | // Bytes returns the slice of the input buffer that is covered by the range |
| 146 | // that would be returned by Range. |
no outgoing calls