-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Dispatch on a type being anywhere in a signature #39878
Comments
Very fancy, but definitely not weird at all! This has certainly come up before, and would be really cool. I think it does make it even easier to write lots of ambiguities, but that's never really stopped us before. |
I think the first interesting thing that comes up is that we don't get a way to represent the intersection of these "for free". I.e. let
So we might have to add explicit intersection types at that point too... |
TensorFlow.jl wanted this for example. |
Are intersection types something that we'd want in the type system? I certainly think I'd want it, but I can imagine that it'd be unwanted because it's yet another avenue for writing non-terminating type-level manipulations. |
@MasonProtter do the non terminations matter in practice though, GHC triggers plenty of opportunities for them and seems to do fine with a timeout. |
As I said, I think I want it. I was more wondering if the language devs could explain if there's some terrible downside to this. |
I recall GHC uses only the much more limited HM-type-inference. Non-terminations do occur relatively frequently in Julia already at the inference level, but don't happen in the type system. It seems unlikely that explicit intersection type representations would make this non-terminating, since it is already very similar to existing expressions. (Specifically, I think it is already quite close to being expressed by the constraints implied by repeated TypeVars such as |
As discussed in #42455, you can't in general accomplish this in Julia right now if you are extending someone else's method, without resorting to type piracy. #42455 suggests a simpler syntax for this analogous to the f(args::VarargOne{T,Any,N}) where {N} = ... (The |
Regarding intersections, you could have
if you allowed |
Yes, this seems like a great way to get the thing that I wanted (it seems we also have very similar use cases). The name can be bikeshed, but I do like that this doesn’t require any funny parser changes or anything like that. |
Just to say this would be useful for Convex.jl, which currently pirates |
That PR seems right for the current state of affairs for |
We have aliases const Value = Union{Number,AbstractArray}
const AbstractExprOrValue = Union{AbstractExpr,Value} so I think
Are you saying using these methods? julia/stdlib/LinearAlgebra/src/abstractq.jl Lines 133 to 142 in f0a28e9
Maybe that can work. If there is any edit: it looks like currently only the first object matters for |
Not those, it defines new vcat methods very similar to that PR, which is a super type of AbstractArray |
Okay, so this is a bit of a weird feature request, but there are some circumstances, for example when writing a CAS, where you want to dispatch on whether some type
T
occurs anywhere in an args list. Currently, the only real way to do this is with a trait like mechanism, e.g.I think it would be quite useful if there was a built-in dispatch mechanism for this. Perhaps a syntax like
or even
where
args_right
is allowed to have instances ofT
in it?I get that this is probably too complicated and niche a thing to put in the dispatch system, but I figured I should bring it up in case anyone else and thoughts on this and I didn't see an issue for it.
The text was updated successfully, but these errors were encountered: