7#include "skeleton_node.hpp"
8#include "skeleton_parse_context.hpp"
11namespace hi::inline
v1 {
16parse_skeleton(std::filesystem::path path, std::string_view::const_iterator first, std::string_view::const_iterator last)
18 auto context = skeleton_parse_context(
std::move(path), first, last);
19 auto e = parse_skeleton(context);
25 return parse_skeleton(
std::move(path), text.cbegin(), text.cend());
30 hilet fv = file_view(path);
31 hilet sv = as_string_view(fv);
33 return parse_skeleton(
std::move(path), sv.cbegin(), sv.cend());
Defines the file_view class.
#define hilet
Invariant should be the default for variables.
Definition utility.hpp:23
DOXYGEN BUG.
Definition algorithm.hpp:15