Return the number of parallel steps that it takes to sort any input.
(self)
| 111 | |
| 112 | @property |
| 113 | def depth(self): |
| 114 | """Return the number of parallel steps that it takes to sort any input. |
| 115 | """ |
| 116 | return len(self) |
| 117 | |
| 118 | @property |
| 119 | def length(self): |
nothing calls this directly
no outgoing calls
no test coverage detected