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
Hi, I've recently started using mutable.MultiDict, but I often found myself using this pattern.
mutable.MultiDict
iterable.foreach(v => dict.addOne(k,v))
Could we add a function to add many values all at once for a single key instead of one at a time?
I was thinking of something like the following:
// mutable def addMany(key: K, values: Iterable[V]): this.type = { elems.updateWith(k) { case None => Some(Set.from(values)) case Some(vs) => Some(vs ++= values) } this }
// immutable def addMany(key: K, values: Iterable[V]): MultiDict[K, V] = new MultiDict(elems.updatedWith(key) { case None => Some(Set.from(values)) case Some(vs) => Some(vs ++ values) })
We might also want to skip updates if the iterables are empty.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I've recently started using
mutable.MultiDict
, but I often found myself using this pattern.iterable.foreach(v => dict.addOne(k,v))
Could we add a function to add many values all at once for a single key instead of one at a time?
I was thinking of something like the following:
We might also want to skip updates if the iterables are empty.
The text was updated successfully, but these errors were encountered: