Direct access (caller must have called ensure_const_vals). */
(&self)
| 101 | |
| 102 | /* Direct access (caller must have called ensure_const_vals). */ |
| 103 | pub fn const_vals_ref(&self) -> &[Val] { |
| 104 | self.const_vals.as_ref().expect("const pool not materialized") |
| 105 | } |
| 106 | |
| 107 | pub fn const_vals_opt(&self) -> Option<&[Val]> { |
| 108 | self.const_vals.as_deref() |