Whether the path is either "" or ".".
assert(WindowsPath().isDot); assert(WindowsPath("").isDot); assert(WindowsPath(".").isDot); assert(PosixPath().isDot); assert(PosixPath("").isDot); assert(PosixPath(".").isDot);
See Implementation
Whether the path is either "" or ".".