Because of this:
As a heuristic, Julia avoids automatically specializing on argument type parameters in three specific cases:
Type
,Function
, andVararg
.
Your args...
is an untyped Vararg
, so Julia doesn’t specialize.
Because of this:
As a heuristic, Julia avoids automatically specializing on argument type parameters in three specific cases:
Type
,Function
, andVararg
.
Your args...
is an untyped Vararg
, so Julia doesn’t specialize.