-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
Description
Expr.Bool calls it equal:
Lines 338 to 339 in f50d5bf
| (** [equal expr1 expr2] constructs an equality expression. *) | |
| val equal : t -> t -> t |
The underlying Ty.Relop.t calls it Eq:
Line 404 in f50d5bf
| | Eq |
Typed.Bool calls it eq:
Lines 125 to 126 in f50d5bf
| (** [eq t1 t2] returns true if [t1] and [t2] are structurally equal. *) | |
| val eq : 'a expr -> 'a expr -> t |
I guess it probably should also be Expr.Bool.eq.
Although Expr.Bool seems like a strange module altogether: there aren't Expr.Int, etc like under Typed.
Reactions are currently unavailable