有沒有辦法從其他命名空間重新導出某些命名空間的變量?我希望能夠做到這一點:Clojure:重新導出變量
(ns mine.core
(:use [incanter core charts datasets io]))
; re-export Incanter somehow
然後在REPL我將能夠在僅僅use
-ing mine.core
使用咒術功能。
user=> (use 'mine.core)
nil
user=> (view (histogram (sample-normal 1000)))
謝謝!
看看http://stackoverflow.com/questions/4732134/can-i-refer-another-namespace-and-expose-its-functions-as-public-for-the-current?rq=1 – jwhitlark