What advantage does using :refer in :require have over using :only in :use? Are the following synonymous?
(ns so.example (:use [my.lib :only [function]]))
and
(ns so.example (:require [my.lib :refer [function]]))
|
What advantage does using
and
|
||||
|
|
|
Main idea of adding |
|||||||
|
|
yes, they are equivalent,
as much is it may look like it, there really is no magic to namespaces if you make a namespace like this
the equivalent with :require would be:
|
|||||||||||||
|