You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using #show on remapped operators prints the signature of the corresponding OCaml operator, not the remapped Reason operator. For instance, #show (^) prints the signature of (++):
#show (^)
let ( ^ ): (string, string) => string;
whereas
(^);
: (ref('a)) => 'a =
and requesting the signature of (++) itself fails:
#show (++)
Unknown element.
The text was updated successfully, but these errors were encountered:
Using
#show
on remapped operators prints the signature of the corresponding OCaml operator, not the remapped Reason operator. For instance,#show (^)
prints the signature of(++)
:whereas
(^);
and requesting the signature of
(++)
itself fails:The text was updated successfully, but these errors were encountered: