com.bestvike.function.DecimalFunc1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of linq Show documentation
Show all versions of linq Show documentation
LINQ to Objects for Java.
The newest version!
package com.bestvike.function;
import java.math.BigDecimal;
/**
* Created by 许崇雷 on 2019-06-24.
*/
@FunctionalInterface
public interface DecimalFunc1 {
BigDecimal apply(T arg);
}