Convert this to a value list in `pool` with `fixed` prepended.
(self, fixed: &[Value], pool: &mut ValueListPool)
| 374 | |
| 375 | /// Convert this to a value list in `pool` with `fixed` prepended. |
| 376 | pub fn into_value_list(self, fixed: &[Value], pool: &mut ValueListPool) -> ValueList { |
| 377 | let mut vlist = ValueList::default(); |
| 378 | vlist.extend(fixed.iter().cloned(), pool); |
| 379 | vlist.extend(self.0, pool); |
| 380 | vlist |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | // Coerce `VariableArgs` into a `&[Value]` slice. |
no test coverage detected