Interface ResolvedTypeParameter


  • public interface ResolvedTypeParameter
    The resolved representation of a type parameter in the context of a type reference. Consider for instance this method:
     interface Foo<T> {
      def <U extends T> void foo(U arg)
     }
     
    For a Foo<CharSequence>, the type parameter U would have the upper bound CharSequence