Convert an `object_` into an array of base atoms.
(self, object_: Any)
| 1219 | return "%s()" % self.__class__.__name__ |
| 1220 | |
| 1221 | def toarray(self, object_: Any) -> NoReturn: |
| 1222 | """Convert an `object_` into an array of base atoms.""" |
| 1223 | raise NotImplementedError |
| 1224 | |
| 1225 | def fromarray(self, array: Any) -> NoReturn: |
| 1226 | """Convert an `array` of base atoms into an object.""" |
no outgoing calls