package bcfg

  1. Overview
  2. Docs
A boringly simpleconfiguration format

Install

dune-project
 Dependency

Authors

Maintainers

Sources

bcfg-0.1.0.tbz
sha256=7c4862dc6f1bc77bf643881aaad4d59b718c8d5e8e206a63b6a2c532692f0d56
sha512=5c31155c41d6fb84133cbc9aa947a6a3e851acb562204412dd1310407e9b99c6d7619e5a0da77cc9f16268db2583daa5ede0f5db7e43a2057d31079d9fd4a17b

doc/bcfg.q/Bcfgq/Bcfg_query/index.html

Module Bcfgq.Bcfg_querySource

Sourcemodule Fmt : sig ... end
Sourcetype pattern =
  1. | PWord of string
  2. | PAny
  3. | PEval of expr
  4. | PNot of pattern
  5. | PAnd of pattern * pattern
  6. | POr of pattern * pattern
Sourceand expr =
  1. | EGet_parameter of expr * string
  2. | EGet_subdirective of expr * expr
  3. | EDirective of expr * pattern
  4. | EParameter of pattern * expr
  5. | EChild of pattern * expr
  6. | ENot_parameter of pattern * expr
  7. | ENot_child of pattern * expr
  8. | EWord of string
  9. | EPattern of pattern
Sourceval is_safe_char : char -> bool
Sourceval is_safe : string -> bool
Sourceval pp_word : Format.formatter -> string -> unit
Sourceval pp_pattern : Format.formatter -> pattern -> unit
Sourceval pp_pattern_atom : Format.formatter -> pattern -> unit
Sourceval pp_expr : Format.formatter -> expr -> unit