cheatah
Source

stdlib/parsers/json/document.hpp

1// Copyright (c) 2026 BigBrain LLC. MIT-licensed (see LICENSE).
2// Original work; see ACKNOWLEDGMENTS.md for the open-source ideas we build upon.
3#pragma once
5// cheatah::parsers::json — Document: the root of a parsed tree. It is just a Node, named for
6// intent at call sites (parse() returns a Document; dump() takes one).
8#include "node.hpp"
10namespace cheatah::parsers::json {
12using Document = Node;
14} // namespace cheatah::parsers::json