johnmyleswhite / Style.jl

Style guideline for Julia
74 stars 12 forks source link

Does #33 make sense as-is given the 0.4 deprecation... #5

Open sbromberger opened 9 years ago

sbromberger commented 9 years ago

of requiring explicit imports from Base.Operators?

See also https://groups.google.com/d/msg/julia-users/o3mfc0vfsz8/GhK-hckyCAAJ

That is, I'm not sure it should be considered a style violation to have something along the lines of

import Base: ==, +, -, /, *

in the main module file when you're defining (mulitple) methods for each of these.

johnmyleswhite commented 9 years ago

Nope, still as convinced as ever that using import is a bad idea.