Return a spec Returns: IndexSpec:
(&self)
| 236 | /// Returns: |
| 237 | /// IndexSpec: |
| 238 | pub fn build(&self) -> PyIndexSpec { |
| 239 | PyIndexSpec { |
| 240 | graph: self.builder.graph.clone().into_dynamic(), |
| 241 | spec: self.builder.clone().build(), |
| 242 | } |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | #[pymethods] |
no test coverage detected