Module Base_quickcheck__.Observer
type -'a t= 'a Base_quickcheck__.Observer0.t
Basic Observers
val opaque : _ tProduces an observer that treats all values as equivalent. Random functions generated using this observer will be constant with respect to the value(s) it observes.
val unit : Base.unit tval bool : Base.bool tval char : Base.char tval string : Base.string tval int : Base.int tval int32 : Base.int32 tval int63 : Base.Int63.t tval int64 : Base.int64 tval nativeint : Base.nativeint tval float : Base.float tval sexp : Base.Sexp.t tval option : 'a t -> 'a Base.option tval list : 'a t -> 'a Base.list tval both : 'a t -> 'b t -> ('a * 'b) tval either : 'a t -> 'b t -> ('a, 'b) Base.Either.t tval result : 'a t -> 'b t -> ('a, 'b) Base.Result.t t
val fn : 'a Base_quickcheck.Generator.t -> 'b t -> ('a -> 'b) tProduces an observer that generates random inputs for a given function, calls the function on them, then observes the corresponding outputs.
val map_t : 'key t -> 'data t -> ('key, 'data, 'cmp) Base.Map.t tval set_t : 'elt t -> ('elt, 'cmp) Base.Set.t tval map_tree : 'key t -> 'data t -> ('key, 'data, 'cmp) Base.Map.Using_comparator.Tree.t tval set_tree : 'elt t -> ('elt, 'cmp) Base.Set.Using_comparator.Tree.t t
Observers Based on Hash Functions
val of_hash_fold : (Base.Hash.state -> 'a -> Base.Hash.state) -> 'a tCreates an observer that just calls a hash function. This is a good default for most hashable types not covered by the basic observers above.
Modifying Observers
Observers for Recursive Types
val fixed_point : ('a t -> 'a t) -> 'a tTies the recursive knot to observe recursive types.
For example, here is an observer for binary trees:
let tree_observer leaf_observer = fixed_point (fun self -> either leaf_observer (both self self) |> unmap ~f:(function | `Leaf leaf -> First leaf | `Node (l, r) -> Second (l, r)))
Low-Level functions
Most users do not need to call these functions.
val create : ('a -> size:Base.int -> hash:Base.Hash.state -> Base.Hash.state) -> 'a tval observe : 'a t -> 'a -> size:Base.int -> hash:Base.Hash.state -> Base.Hash.state