Check if a value reference is valid.
(&self, v: Value)
| 371 | |
| 372 | /// Check if a value reference is valid. |
| 373 | pub fn value_is_valid(&self, v: Value) -> bool { |
| 374 | self.values.is_valid(v) |
| 375 | } |
| 376 | |
| 377 | /// Check whether a value is valid and not an alias. |
| 378 | pub fn value_is_real(&self, value: Value) -> bool { |
no test coverage detected