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
I'm building an application that uses sprs for sparse matrices, and I've been debating how to handle errors when the user asks for a row or column that is out of bounds. sprs handles this with an option, but I would have expected a Result, for error handling. I'm inclined to use Result in downstream parts of my own application, but if there's a compelling reason why sprs uses Option instead then I might stick to that for consistency with your package! Thank you!
The text was updated successfully, but these errors were encountered:
Guess this is just an oversight or old API which deserves an upgrade. I would suggest for your crate to create a new error type wrapping the None from sprs (see Option::ok_or_else for a simple way of doing this].
I'm building an application that uses
sprs
for sparse matrices, and I've been debating how to handle errors when the user asks for a row or column that is out of bounds.sprs
handles this with an option, but I would have expected aResult
, for error handling. I'm inclined to useResult
in downstream parts of my own application, but if there's a compelling reason whysprs
usesOption
instead then I might stick to that for consistency with your package! Thank you!The text was updated successfully, but these errors were encountered: