-
-
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
x as Foo: syntactic sugar for convert #8710
Comments
As noted by @StefanKarpinski, one might also want to allow
This also extends in a natural way to parameterized definitions like |
We probably should also consider making |
@vtjnash suggests some additional cases:
none of which seem to introduce any syntactic ambiguities. Note that
so little or no new functionality on the |
|
This seems like allowing exactly one function call expression in a method signature, which makes it feel odd that there's something so special about this one function call. It really begs to be generalized somehow, and feels like it just might be useful for expressing the "Tim Holy Trait Trick" (THTT). |
(OT: That's the first time I know of something being named after me, with an acronym no less. Now I must be important. I'll get right to work seeing if I can persuade anyone else of that. 😄) |
|
we may want the arrow for arrow types some day. |
I'm not sure I understand what else @jakebolewski, I wouldn't see your example as a very good use case for this; in that case, I would just do Another thing that would be handy, but probably not very well generalizable would be able to do x = [1, 2, 3, 4, 5]
x as Float64[] |
The language doesn't enforce that |
ref #1470, which also had quite a lengthy discussion about special syntax for convert (starting #1470 (comment) perhaps) I prefer the english phrase. Perhaps I've been biased by python, but |
+1 |
I sympathize with using function foo{T}(x::T) :> Int
....
end over function foo{T}(x::T) as Int
...
end |
Honestly, |
Instead of making |
I know it's one more keyword, but this looks nicer to my eyes
|
IMO, "convert" is a much clearer name for this – "as" could mean either conversion or reinterpretation. |
Good points. Imo I don't really think we need an operator at all. For the cases were you want to distinguish between construction and conversion (which in my experience are few) why not just call |
I do feel like most conversion in Julia is implicit. I'm not sold on needing an operator. |
I'd say this argues against |
Yep, I'm not a fan of |
The coming ability to use Of course the truly problematic cases would be rare, but a rare bug is the worst kind. |
Perhaps it could be said that for immutable types, they are equivalent operations; whereas for regular "container-like" types it is more typical for the two operations to be quite distinct. ? EDIT: when T is an |
Are you referring to reinterpretation in the sense of type-casting? I don't think that ambiguity would be as much of a concern in a language that doesn't have interfaces, nor allow instantiation of abstract types. However, I think that it does read rather nicely in Gtk usage:
currently, that would typically be written as which is somewhat less readable because it is hard to construct a mental sentence with the nouns in that order, whereas
I don't see why you couldn't |
|
|
Looks like the discussion is going to repeat #1470 (the |
I think I'm not sure about coercion; it seems if you try hard enough you can coerce just about anything to anything else. |
|
This is a bit extreme. I guess you would write it |
I've come to believe that coercion isn't a well-defined enough concept to deserve a generic function, let alone an operator. A good example is "coercion" of real values to integers – which way do you want to do it? Round, trunc, floor, ceil are all equally viable way to do this. Picking one arbitrarily is just asking for trouble. If you want truncation, use |
@StefanKarpinski I'm fine with that, apparently in #1470 the final conclusion was that it wasn't really needed. I just wanted to make sure the syntax discussed here would allow getting rid of |
As @JeffBezanson points out, with the upcoming |
I'm going to close this, as it doesn't seem to be a clear win. |
As I was almost finished writing this, I'll post anyway, realizing the issue is already closed. I think this discussion has gotten a little fractured. Here's a simplified proposal: as{T}(x, ::Type{T}) = convert(T, x)::T
as(x, y) = as(x, typeof(y) )
# `as` is parsed as binary operator, allowing
# 111: hdrlines = split(bytestring(buff, convert(Int, sz * n)), "\r\n")
111: hdrlines = split(bytestring(buff, sz * n as Int), "\r\n")
# 143: r = convert(Csize_t, b2copy)
143: r = b2copy as Csize_t
# 186: ret = convert(Cint, 0)
186: ret = 0 as Cint
# 23: control_array = convert(Array{Uint8,1}, [vec(0:(parseint("1f", 16)))])
23: control_array = [vec(0:(parseint("1f", 16)))] as Uint[]
# 29: _dbscan(D, convert(T, eps), minpts, 1:n)
29: _dbscan(D, eps as T, minpts, 1:n) (examples taken from my There's certainly nothing too fancy about this proposal other than gaining some readability/simplicity, or in other words, sugar. I think it would be good to at least wait a while after the Obviously, one could write some very ugly/obfuscated code, but there's also no forcing of behavior here to use |
I just removed this behavior from
I wonder what the right precedence is. |
Operators that require spaces around them tend to seem like they should have loose precedence. |
FWIW On Mon, Oct 20, 2014 at 12:25 PM, Stefan Karpinski <[email protected]
|
To me, from a language geek perspective, |
Reminds me of |
convert
is one of the most commonly used and important functions in Julia, with hundreds of methods, but it is a little ugly (and hard to type) to call explicitly. On #8648, the following syntactic sugar was proposed:x as Foo
: sugar forconvert(Foo, x)
(@quinnj) [or possiblyconvert(Foo, x)::Foo
— see below]foo(x as Foo) = ...
: sugar forfoo(x) = foo(convert(Foo, x))
andfoo(x::Foo) = ...
(@joehuchette)Pros, cons?
The text was updated successfully, but these errors were encountered: