1 //===----------------------------------------------------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // UNSUPPORTED: c++98, c++03
12 // <experimental/filesystem>
16 //-------------------------------
17 // 8.4.10 path query [path.query]
18 //-------------------------------
19 // bool empty() const noexcept;
20 // bool has_root_path() const;
21 // bool has_root_name() const;
22 // bool has_root_directory() const;
23 // bool has_relative_path() const;
24 // bool has_parent_path() const;
25 // bool has_filename() const;
26 // bool has_stem() const;
27 // bool has_extension() const;
28 // bool is_absolute() const;
29 // bool is_relative() const;
31 // tested in path.decompose