-
Notifications
You must be signed in to change notification settings - Fork 323
Add array stacking methods #75
New issue
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
Comments
|
As a data point, I have some stacking methods for sparse matrices in sprs, as free functions: If I follow you, taking inspiration from SliceConcatExt would mean having a trait with methods such as One point that's hard to address using slices though is type heterogeneity. With that design, it's not possible to stack an OwnedArray and an ArrayView together. Maybe some trait like IntoArrayView could help there, not sure. |
Using a slice argument either way is an inspiration from concat() too, so a free function can work. |
FYI I've started working on this, I'll PR once I have a proof of concept. |
No description provided.
The text was updated successfully, but these errors were encountered: