package links
val pp :
Ppx_deriving_runtime.Format.formatter ->
t ->
Ppx_deriving_runtime.unit
val show : t -> Ppx_deriving_runtime.string
val pp_pretty : Stdlib.Format.formatter -> t -> unit
Print functional dependencies in a human readable form, e.g. 'Col1 Col2 -> Col 3'
val make : Alias.Set.t -> Alias.Set.t -> t
Construct a new functional dependency. Example:
let fd = Fun_dep.make left right in
...
val left : t -> Alias.Set.t
Get the left side of a functional dependency (i.e. left of X -> Y returns X)
Get the left side of a functional dependency as a list (i.e. left of X -> Y returns Y)
val right : t -> Alias.Set.t
Get the right side of a functional dependency (i.e. left of X -> Y returns Y)
Get the right side of a functional dependency as a list (i.e. left of X -> Y returns Y)
val all_columns : t -> Alias.Set.t
Get all of the columns of a functional dependency (i.e. left of X -> Y returns XY)
Get all of the columns of a functional dependency as a list (i.e. left of X -> Y returns XY)
Convert two sets of alias lists into a functional dependency
Construct a single functional dependency from a set of columns and a key
module Check_error : sig ... end
module Remove_defines_error : sig ... end
module Compare : sig ... end
module Set : sig ... end
module Tree : sig ... end