7#include "skeleton_node.hpp"
8#include "skeleton_parse_context.hpp"
9#include "../resource_view.hpp"
11namespace hi::inline v1 {
16parse_skeleton(URL url, std::string_view::const_iterator first, std::string_view::const_iterator last)
18 auto context = skeleton_parse_context(
std::move(url), first, last);
19 auto e = parse_skeleton(context);
25 return parse_skeleton(
std::move(url), text.cbegin(), text.cend());
30 hilet fv = url.loadView();
31 hilet sv = as_string_view(*fv);
33 return parse_skeleton(
std::move(url), sv.cbegin(), sv.cend());
#define hilet
Invariant should be the default for variables.
Definition required.hpp:23