Skip to content
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

Suggest vcat and hcat derive from cat #36112

Closed
ablaom opened this issue Jun 2, 2020 · 4 comments
Closed

Suggest vcat and hcat derive from cat #36112

ablaom opened this issue Jun 2, 2020 · 4 comments
Labels
arrays [a, r, r, a, y, s]

Comments

@ablaom
Copy link

ablaom commented Jun 2, 2020

I've just implemented an new AbstractArray type and after overloading Base.cat for my new type, discovered that vcat also needed to be overloaded. Is there a reason vcat(A...) does not fall back to cat(A..., dims=1)?

@strickek
Copy link
Contributor

strickek commented Jun 2, 2020

#31183

@brenhinkeller brenhinkeller added the arrays [a, r, r, a, y, s] label Nov 20, 2022
@vtjnash
Copy link
Member

vtjnash commented Dec 13, 2023

It is somewhat unclear how to overload cat properly (#2326) but I believe this should generally now be true:

   1 # The specializations for 1 and 2 inputs are important
   2 vcat(A::AbstractArray) = cat(A; dims=Val(1))
   3 vcat(A::AbstractArray, B::AbstractArray) = cat(A, B; dims=Val(1))
   4 vcat(A::AbstractArray...) = cat(A...; dims=Val(1))
   5 vcat(A::Union{AbstractArray,Number}...) = cat(A...; dims=Val(1))
   6 hcat(A::AbstractArray) = cat(A; dims=Val(2))
   7 hcat(A::AbstractArray, B::AbstractArray) = cat(A, B; dims=Val(2))
   8 hcat(A::AbstractArray...) = cat(A...; dims=Val(2))
   9 hcat(A::Union{AbstractArray,Number}...) = cat(A...; dims=Val(2))

@vtjnash vtjnash closed this as completed Dec 13, 2023
@ablaom
Copy link
Author

ablaom commented Dec 17, 2023

Thanks @vtjnash. But to be clear, are these fallbacks that have been added since I opened the issue, or recommendations for explicit overloadings?

@vtjnash
Copy link
Member

vtjnash commented Dec 18, 2023

It is generally new now

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
arrays [a, r, r, a, y, s]
Projects
None yet
Development

No branches or pull requests

4 participants