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
Currently to persist and remove dups you'd have to write:
source... -> unique() -> persist()
That pays for storing the state twice.
What we'd really like is
source...->persist<SetUnion<T>>()
or maybe to support deletion we'd like:
source...->persist<MapUnionWithTombstones<HashMap<K, SetUnionHashSet<V>>, HashSet<K>>>
The text was updated successfully, but these errors were encountered:
Use lattice_fold/lattice_reduce with flatten after (bit clunky) or, in the future, state
lattice_fold
lattice_reduce
flatten
state
Sorry, something went wrong.
state is the new persist #1058
persist
rohitkulshreshtha
No branches or pull requests
Currently to persist and remove dups you'd have to write:
That pays for storing the state twice.
What we'd really like is
or maybe to support deletion we'd like:
The text was updated successfully, but these errors were encountered: