| 245 | } |
| 246 | |
| 247 | pub struct InValues { |
| 248 | list_value: *mut sqlite3_value, |
| 249 | yielded_first: bool, |
| 250 | value: *mut sqlite3_value, |
| 251 | } |
| 252 | impl InValues { |
| 253 | pub fn new(list_value: *mut sqlite3_value) -> Self { |
| 254 | InValues { |
nothing calls this directly
no outgoing calls
no test coverage detected