We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Array.eq
Eq module expects each (data-type) module to provide eq: 'a Eq.t, which is essentially an equality function on 'a.
Eq
eq: 'a Eq.t
'a
The current Array module lacks eq: ('a Array.t) Eq.t. We want to implement it.
Array
eq: ('a Array.t) Eq.t
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Background
Eq
module expects each (data-type) module to provideeq: 'a Eq.t
, which is essentially an equality function on'a
.Goal
The current
Array
module lackseq: ('a Array.t) Eq.t
. We want to implement it.Todos
The text was updated successfully, but these errors were encountered: