Hi,
in a custom module I’m defining function-like objects like this:
export trf_standardize
struct trf_standardize
means
stds
end
function (t::trf_standardize)(x)
(x .- t.means) ./ (t.stds)
end
How would I export the function-like object?