Return the number of parallel steps that it takes to sort any input.
(self)
| 117 | |
| 118 | @property |
| 119 | def depth(self): |
| 120 | """Return the number of parallel steps that it takes to sort any input. |
| 121 | """ |
| 122 | return len(self) |
| 123 | |
| 124 | @property |
| 125 | def length(self): |
nothing calls this directly
no outgoing calls
no test coverage detected