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
Vague inspiration: https://pursuit.purescript.org/packages/purescript-record/0.2.6/docs/Data.Record
Not sure about all of this, but:
union
append
insert
insertOrSet
There have to be tests for all of these, including
added by srid:
Eq
RecTyIdxH
The text was updated successfully, but these errors were encountered:
srid
No branches or pull requests
Vague inspiration: https://pursuit.purescript.org/packages/purescript-record/0.2.6/docs/Data.Record
Not sure about all of this, but:
union
appends records and removes duplicates. Left-biased. Does not sort.append
appends records and does not remove duplicates.insert
adds a field to the beginning, but checks that the record does not contain that field already.insertOrSet
adds a field to the beginning, or replaces the existing field.There have to be tests for all of these, including
insert
.added by srid:
append
overwriting values (looks to affectEq
as well; ultimately because ofRecTyIdxH
)The text was updated successfully, but these errors were encountered: