True if the value is derived from one or more memory locations whose values were not known when the value was constructed.
(&self)
| 961 | /// True if the value is derived from one or more memory locations whose values were not known |
| 962 | /// when the value was constructed. |
| 963 | fn is_path_alias(&self) -> bool { |
| 964 | matches!( |
| 965 | &self.expression, |
| 966 | Expression::Reference(..) | Expression::Variable { .. } | Expression::Widen { .. } |
| 967 | ) |
| 968 | } |
| 969 | |
| 970 | /// True if all possible concrete values are elements of the set corresponding to this domain. |
| 971 | fn is_top(&self) -> bool { |