| 92 | |
| 93 | int length() const { return path.length(); } |
| 94 | unsigned depth() const { |
| 95 | if (bits.empty() && path.length() > 0) parse_bits(); |
| 96 | return bits.size(); |
| 97 | } |
| 98 | bool empty() const { return path.length() == 0 && ino == 0; } |
| 99 | |
| 100 | bool absolute() const { return ino == 1; } |