https://github.com/Jutho/TupleTools.jl/blob/ad34513fb3644f6e58741358252e457461dba113/src/TupleTools.jl#L37 Can someone explain why `tail2` is defined in such a complicated way? Why not just `tail2(t::Tuple) = tail(tail(t))`?
TupleTools.jl/src/TupleTools.jl
Line 37 in ad34513
Can someone explain why
tail2is defined in such a complicated way?Why not just
tail2(t::Tuple) = tail(tail(t))?