rm deprecation

This commit is contained in:
Mike J Innes 2018-02-22 00:23:02 +00:00
parent 491785a681
commit 54919b8dca

View File

@ -21,9 +21,6 @@ function mapleaves(f, x; cache = ObjectIdDict())
cache[x] = isleaf(x) ? f(x) : mapchildren(x -> mapleaves(f, x, cache = cache), x)
end
export mapparams
@deprecate mapparams(f, x) mapleaves(f, x)
using DataFlow: OSet
function prefor(f, x; seen = OSet())