Fork me on GitHub
#beginners
<
2017-04-29
>
matan08:04:03

nothing like recursive require of namespaces (`require a.b.*`) in clojure right?

matan08:04:55

also, I seem to notice that an fn loaded into a namespace with load (when splitting a namespace across source files) do not become available to other namespaces that require it, but only becomes available within the namespace as if it were private

noisesmith09:04:09

it just doesn't get aliased

noisesmith09:04:55

eg (require '[foo.bar :as f]) only defins f/a f/b etc. in that namespace for the items that exist in foo.bar at that time