diff options
| author | John Estabrook <jestabro@vyos.io> | 2026-09-02 07:15:59 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-09-02 07:15:59 -0500 |
| commit | 5b5c5f1277b165045123acae4a2470261fbad566 (patch) | |
| tree | 8c43d13c61b282d889898cc03e55ffc25a82c62e /src/util_reference_tree.mli | |
| parent | 07636e49b3a04fdc76ac42bd65df88736c3945f1 (diff) | |
| parent | f7b4459ba3c6551f8d054456b0d5013a4b0e3ee1 (diff) | |
| download | vyos1x-config-rolling.tar.gz vyos1x-config-rolling.zip | |
Merge pull request #92 from jestabro/reference-tree-utilsrolling
T9231: Add reference_tree utils to return paths satisfying condition
Diffstat (limited to 'src/util_reference_tree.mli')
| -rw-r--r-- | src/util_reference_tree.mli | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/util_reference_tree.mli b/src/util_reference_tree.mli new file mode 100644 index 0000000..605a58a --- /dev/null +++ b/src/util_reference_tree.mli @@ -0,0 +1,16 @@ + +open Reference_tree + +val get_multi_nodes : ?tag_value_placeholder:string -> t -> string list list +val get_tag_nodes : ?tag_value_placeholder:string -> t -> string list list +val get_nodes_of_kind : ?tag_value_placeholder:string -> t -> string -> string list list +val get_rdeps_of_kind : ?tag_value_placeholder:string -> t -> string -> string list list +val get_rdeps_of_kind_data : ?tag_value_placeholder:string -> t -> string -> (string list * string) list + +val get_multi_nodes_yojson : ?tag_value_placeholder:string -> t -> string +val get_tag_nodes_yojson: ?tag_value_placeholder:string -> t -> string +val get_nodes_of_kind_yojson : ?tag_value_placeholder:string -> t -> string -> string +val get_rdeps_of_kind_yojson : ?tag_value_placeholder:string -> t -> string -> string +val get_rdeps_of_kind_data_yojson : ?tag_value_placeholder:string -> t -> string -> string + +val get_path_owner : t -> string list -> string option |
