package sihl

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type op =
  1. | Eq
  2. | Like
type criterion = {
  1. key : string;
  2. value : string;
  3. op : op;
}
type t =
  1. | And of t list
  2. | Or of t list
  3. | C of criterion