/usr/lib/ocaml/galax/path_structutil.mli is in libgalax-ocaml-dev 1.1-15build5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | (***********************************************************************)
(* *)
(* GALAX *)
(* XQuery Engine *)
(* *)
(* Copyright 2001-2007. *)
(* Distributed only by permission. *)
(* *)
(***********************************************************************)
(* $Id: path_structutil.mli,v 1.5 2007/02/01 22:08:52 simeon Exp $ *)
(* Module: Path_structutil
Description:
This module contains basic operations on path structures.
*)
open Path_struct
(* Turns all subtree annotations on *)
val imposes_subtree : rooted_path_sequence -> rooted_path_sequence
(* Type for actions resulting from path navigation *)
type action =
| GetSubtree
| PreserveNode
| SkipNode
| KeepMovingPreserveNode of path_fragment_sequence
| KeepMovingSkipNode of path_fragment_sequence
(* step inside a document *)
val inside_document :
Streaming_types.resolved_sax_event -> rooted_path_sequence -> string -> path_fragment_sequence
(* step inside an external variable *)
val inside_variable :
Streaming_types.resolved_sax_event -> rooted_path_sequence -> Xquery_common_ast.cvname -> path_fragment_sequence
(* step inside an element *)
val one_step :
Streaming_types.resolved_sax_event -> path_fragment_sequence -> action
(* step inside attributes *)
val one_step_attribute :
path_fragment_sequence -> Streaming_types.resolved_sax_xml_attribute -> bool
(* Printing of path structures *)
val print_path_sequence :
Format.formatter -> rooted_path_sequence -> unit
|