Returns an array that's in descending order.
(size, dtype, rnd)
| 195 | @staticmethod |
| 196 | @memoize |
| 197 | def reversed(size, dtype, rnd): |
| 198 | """ |
| 199 | Returns an array that's in descending order. |
| 200 | """ |
| 201 | return SortGenerator.ordered_range(size, dtype=dtype)[::-1] |
| 202 | |
| 203 | @staticmethod |
| 204 | @memoize |
nothing calls this directly
no test coverage detected