Module Polars.Join_type

type t =
  1. | Left
  2. | Inner
  3. | Outer
  4. | As_of of {
    1. strategy : [ `Backward | `Forward | `Nearest ];
    2. tolerance : string option;
    3. left_by : string list option;
    4. right_by : string list option;
    }
  5. | Cross
  6. | Semi
  7. | Anti
include Ppx_compare_lib.Comparable.S with type t := t
val compare : t Base__Ppx_compare_lib.compare
include Sexplib0.Sexpable.S with type t := t
val t_of_sexp : Sexplib0__.Sexp.t -> t
val sexp_of_t : t -> Sexplib0__.Sexp.t