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
Currently, all the functions uses set/get prefixes. This is a bit confusing considering some set functions does different actions on conflict. There should be standard prefixes that warns callers about the kind of operation.
Proposals
insert/upsert instead of set_
insert_ for error on conflict
upsert_ for overwrite on conflict
add/set instead of set_
add_ for error on conflict
set_ for overwrite on conflict
The text was updated successfully, but these errors were encountered:
Proposal Description
Currently, all the functions uses set/get prefixes. This is a bit confusing considering some set functions does different actions on conflict. There should be standard prefixes that warns callers about the kind of operation.
Proposals
set_
insert_
for error on conflictupsert_
for overwrite on conflictset_
add_
for error on conflictset_
for overwrite on conflictThe text was updated successfully, but these errors were encountered: