A common pattern to expand a function is: ```julia P = Legendre() x = axes(P,1) f = P / P \ exp.(x) ``` But perhaps a shortcut would be useful so this is one line: ```julia expand(Legendre(), exp) ``` That is, add the function: ```julia function expand(P, f) x = axes(P,1) P / P \ f.(x) end ```