我使用 fj.data.List 提供的 List 类型在功能 Java 中有一个 List 类型列表
import fj.data.List
List<Long> managedCustomers
我正在尝试使用以下内容对其进行过滤:
managedCustomers.filter(customerId -> customerId == 5424164219L)
我收到这条消息
根据文档, List 有一个过滤方法,这应该可以工作 http://www.functionaljava.org/examples-java8.html
我错过了什么?
谢谢