Was going to update JuliaStats/Distance.jl to require and use NumericFuns, but I noticed functors are still used in the docs and README here -- what do you think about re-exporting NumericFuns here?
DataFrames does it with DataArrays. It would mean requiring Reexport, and replacing using NumericFuns with using Reexport; @reexport using NumericFuns (and no longer having to use NumericFuns throughout the test directory).
Was going to update
JuliaStats/Distance.jlto require and useNumericFuns, but I noticed functors are still used in the docs and README here -- what do you think about re-exportingNumericFunshere?DataFrames does it with DataArrays. It would mean requiring
Reexport, and replacingusing NumericFunswithusing Reexport; @reexport using NumericFuns(and no longer having to use NumericFuns throughout the test directory).