package query-json

  1. Overview
  2. Docs
Faster, simpler and more portable implementation of `jq` in OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

query-json-0.5.52.tbz
sha256=045832458e20ae90f7bb14536e27aa5e4c5528968ac48ac390409a66fe6b438e
sha512=9d4af4a9c8f5b2f4fb84830f0651ba4400f32e97bdec1e61378780906077af80d5679f9ccf545a072c1ffbe70a18ca4b3dd57b79d02384384068ee695d67e4ac

doc/query-json.core/Tokenizer/index.html

Module TokenizerSource

Sourceval __sedlex_table_10 : string
Sourceval __sedlex_table_14 : string
Sourceval __sedlex_table_1 : string
Sourceval __sedlex_table_2 : string
Sourceval __sedlex_table_3 : string
Sourceval __sedlex_table_4 : string
Sourceval __sedlex_table_5 : string
Sourceval __sedlex_table_6 : string
Sourceval __sedlex_table_7 : string
Sourceval __sedlex_table_8 : string
Sourceval __sedlex_table_9 : string
Sourceval __sedlex_table_11 : string
Sourceval __sedlex_table_12 : string
Sourceval __sedlex_table_15 : string
Sourceval __sedlex_table_16 : string
Sourceval __sedlex_table_17 : string
Sourceval __sedlex_table_18 : string
Sourceval __sedlex_table_19 : string
Sourceval __sedlex_table_20 : string
Sourceval __sedlex_table_13 : string
Sourceval __sedlex_partition_4 : int -> int
Sourceval __sedlex_partition_25 : int -> int
Sourceval __sedlex_partition_7 : int -> int
Sourceval __sedlex_partition_14 : int -> int
Sourceval __sedlex_partition_2 : int -> int
Sourceval __sedlex_partition_6 : int -> int
Sourceval __sedlex_partition_11 : int -> int
Sourceval __sedlex_partition_19 : int -> int
Sourceval __sedlex_partition_22 : int -> int
Sourceval __sedlex_partition_9 : int -> int
Sourceval __sedlex_partition_23 : int -> int
Sourceval __sedlex_partition_16 : int -> int
Sourceval __sedlex_partition_24 : int -> int
Sourceval __sedlex_partition_8 : int -> int
Sourceval __sedlex_partition_13 : int -> int
Sourceval __sedlex_partition_17 : int -> int
Sourceval __sedlex_partition_1 : int -> int
Sourceval __sedlex_partition_5 : int -> int
Sourceval __sedlex_partition_15 : int -> int
Sourceval __sedlex_partition_10 : int -> int
Sourceval __sedlex_partition_12 : int -> int
Sourceval __sedlex_partition_21 : int -> int
Sourceval __sedlex_partition_18 : int -> int
Sourceval __sedlex_partition_20 : int -> int
Sourceval __sedlex_partition_3 : int -> int
Sourcetype token =
  1. | NUMBER of float
  2. | STRING of string
  3. | BOOL of bool
  4. | IDENTIFIER of string
  5. | FUNCTION of string
  6. | OPEN_PARENT
  7. | CLOSE_PARENT
  8. | OPEN_BRACKET
  9. | CLOSE_BRACKET
  10. | OPEN_BRACE
  11. | CLOSE_BRACE
  12. | SEMICOLON
  13. | COLON
  14. | DOT
  15. | RECURSE
  16. | PIPE
  17. | QUESTION_MARK
  18. | COMMA
  19. | NULL
  20. | ADD
  21. | SUB
  22. | DIV
  23. | MULT
  24. | MODULO
  25. | AND
  26. | OR
  27. | EQUAL
  28. | NOT_EQUAL
  29. | GREATER
  30. | LOWER
  31. | GREATER_EQUAL
  32. | LOWER_EQUAL
  33. | RANGE
  34. | FLATTEN
  35. | IF
  36. | THEN
  37. | ELSE
  38. | ELIF
  39. | END
  40. | EOF
Sourceval tokenize_string : Sedlexing.lexbuf -> (token, string) result
Sourceval tokenize_apply : Sedlexing.lexbuf -> (token, 'a) result
Sourceval tokenize : Sedlexing.lexbuf -> (token, string) result