Simpler version of equivalent for clients that don't need to differentiate between an error and false.
| 509 | /// Simpler version of equivalent for clients that don't need to |
| 510 | /// differentiate between an error and false. |
| 511 | inline bool equivalent(const Twine &A, const Twine &B) { |
| 512 | bool result; |
| 513 | return !equivalent(A, B, result) && result; |
| 514 | } |
| 515 | |
| 516 | /// Is the file mounted on a local filesystem? |
| 517 | /// |