Ryan Liptak 274d19575e fs: Optimize Dir.deleteTree for non-deeply-nested directories
`deleteTree` now uses a stack-allocated stack for the first 16 nested directories, and then falls back to the previous implementation (which only keeps 1 directory open at a time) when it runs out of room in its stack. This allows the function to perform as well as a recursive implementation for most use-cases without needing allocation or introducing the possibility of stack overflow.
2022-10-05 03:27:25 -07:00
..
2022-08-29 15:14:58 -07:00
2022-08-25 16:36:10 +03:00
2022-08-29 15:12:46 -07:00
2022-08-04 18:02:01 -07:00
2022-08-04 18:09:10 -07:00