具有功能和初始值的Scala折叠

时间:2019-02-13 02:18:23

标签: scala

在给定通用函数的情况下,如何实现折叠函数?

def dofold[A, B](list: List[A], func: (B, A) => B, initial: B): B