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
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
I want to create a PrimitiveDictionaryBuilder with custom capacity and specific data type for the values but I can't
…ctionaryBuilder::new_from_builders` (#7012)
* feat: allow setting custom value data type in `PrimitiveDictionaryBuilder`
Fixes#7011
* use the values capacity for the hash map
* update new_from_empty_builders and not new_from_builders
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
I want to create a
PrimitiveDictionaryBuilder
with custom capacity and specific data type for the values but I can'tThis test fails with:
so I tried using
new_from_builders
this works but I can't control the hash map capacity, and the keys and values are unnecessary iterated over (even if they are empty)
Describe the solution you'd like
Provide
with_value_data_type
function that will be similar toprimitive_builder
so you could do:
The text was updated successfully, but these errors were encountered: