package ez_search

  1. Overview
  2. Docs
type db
type file = {
  1. file_name : string;
  2. file_entry : string;
  3. file_pos : int;
  4. file_length : int;
}
type occurrence
type occurrence_file = {
  1. occ_file : file;
  2. occ_file_pos : int;
}
type occurrence_context = {
  1. prev_lines : (int * string) list;
  2. curr_line : string;
  3. curr_pos : int;
  4. next_lines : (int * string) list;
}
OCaml

Innovation. Community. Security.