> > The only difference between object.verb(args...) and verb(object, args...) > is spelling. Since there is no practical need for the former, you should > just get used to the Julia spelling when writing Julia code. > What about auto-complete? object.verb provides better opportunities to auto-complete on dot compared to verb(object, args). If you have an object and you want to figure out what you can do with it, all you can do in Julia is try using `methodswith`, but that's not that straightforward or easy to use.
I've seen some proposals to do an auto-complete on "object, " (auto-complete putting verbs before object), but I don't have a sense of how awkward will that look in an editor. >