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
We used to split scan and list to represent list without delimiter and list with delimiter / for easier implement. However, after capability implemented, this split is not needed anymore. We have to repeat work between scan and list because they nearly share the same args. For example, #2063
Thus, it's better for us to merge scan into list.
Actions
Add delimiter in OpList (default to /)
Add list_without_delimiter and list_with_delimiter_slash in Capability
Implement scan feature in list
Remove scan API (keep Operator::scan as an alias of Operator::list_with(OpList::with_delimiter("")))
Notes
No public API will be changed.
This issue is a good second issues that suitable for developer who want to contribuote more in OpenDAL.
The text was updated successfully, but these errors were encountered:
Background
We used to split
scan
andlist
to represent list without delimiter and list with delimiter/
for easier implement. However, aftercapability
implemented, this split is not needed anymore. We have to repeat work betweenscan
andlist
because they nearly share the same args. For example, #2063Thus, it's better for us to merge
scan
intolist
.Actions
delimiter
inOpList
(default to/
)list_without_delimiter
andlist_with_delimiter_slash
inCapability
Operator::scan
as an alias ofOperator::list_with(OpList::with_delimiter(""))
)Notes
The text was updated successfully, but these errors were encountered: