Check that two given contexts contain the same data, i.e. graphs, nodes, names, parameters. Underlying structures that contain pointers (graphs, nodes) are compared by data they refer to. # Arguments `context2` - context to compare # Returns `true` if the given contexts contain the same content, otherwise `false`
(&self, context2: Context)
| 4326 | /// |
| 4327 | /// `true` if the given contexts contain the same content, otherwise `false` |
| 4328 | pub fn deep_equal(&self, context2: Context) -> bool { |
| 4329 | contexts_deep_equal(self.clone(), context2) |
| 4330 | } |
| 4331 | } |
| 4332 | |
| 4333 | fn serialize_hashmap<K, V>(map: HashMap<K, V>) -> Vec<(K, V)> |
nothing calls this directly
no test coverage detected