Closed
Description
Since Julia is struct oriented, this could be a nice way make the language more ergonomic for methods
https://en.wikipedia.org/wiki/Uniform_Function_Call_Syntax
Assume
struct Blah
...
end
foo(b::Blah,i::Int32)
...
end
b = Blah(..)
In addition to this syntax
foo(b,123)
this would also be acceptable if a function signature existed with Blah as first parameter type
b.foo(123)
Edited: fixed function name to be idiomatic
Metadata
Metadata
Assignees
Labels
No labels