Check if an attribute exists.
(self, name)
| 216 | return self.raw_wires.get_attribute_names() |
| 217 | |
| 218 | def has_attribute(self, name): |
| 219 | """ Check if an attribute exists. |
| 220 | """ |
| 221 | return self.raw_wires.has_attribute(name) |
| 222 | |
| 223 | def add_attribute(self, name, value=None, vertex_wise=True): |
| 224 | """ Add a new attirbute. |
no outgoing calls