collection
collection copied to clipboard
[suggestion] whereIn, whereNotIn, whereEqual, whereNotEqual
whereIn,whereNotIn, eg:currentPictures.whereNot(removedPictures.contain)vscurrentPictures.whereNotIn(removedPictures)whereEqual,whereNotEqualeg:currentMedias.whereNot((media) => media == removedMedia)vscurrentMedias.whereNotEqual(removedMedia)
Just a suggestion to improve readability, especially for the first one. Those seems vanilla enough to warrant an addition.