Replace &Option<T>
with Option<&T>
in some APIs
#1556
Labels
arrow
Changes to the arrow crate
good first issue
Good for newcomers
parquet
Changes to the parquet crate
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Various methods in
arrow
andparquet
return or accept&Option<T>
. This is unfortunate as sometimes you want to just specify a value as not present, and do not wish to associate a lifetime with this absence of a valueDescribe the solution you'd like
These instances should be replaced with
Option<&T>
Describe alternatives you've considered
We could not make this change
The text was updated successfully, but these errors were encountered: