how to write interface variable length generics
Xiaobai, what should I do to achieve the effect of the following code
related codes
@FunctionalInterface
public interface Convert1N<T..., R> {
    /**
     * 
     * Applies this function to the given arguments.
     *
     * @param t the function argument
     * @return the function result
     */
    R apply(T... t);
}
-sharp-sharp-sharp , 
![ , ][1]
						