DeducedParameterType

The parameter type deduced by IFTI when an expression of type T is passed as an argument to a template function.

For all types other than pointer and slice types, DeducedParameterType!T is the same as T. For pointer and slice types, it is T with the outer-most layer of qualifiers dropped.

  1. alias DeducedParameterType(T) = DeducedParameterTypeImpl!T
    package
    alias DeducedParameterType(T) = DeducedParameterTypeImpl!T
  2. alias DeducedParameterType(alias T) = DeducedParameterTypeImpl!T

Meta