com.bestvike.function.Action1 Maven / Gradle / Ivy
package com.bestvike.function;
/**
* Created by 许崇雷 on 2017-07-10.
*/
@FunctionalInterface
public interface Action1 {
void apply(T arg);
}
package com.bestvike.function;
/**
* Created by 许崇雷 on 2017-07-10.
*/
@FunctionalInterface
public interface Action1 {
void apply(T arg);
}