标签: scala
假设我定义了以下类型。
type T[+A] = M => (A, M)
val fun: T[Int] = _.nextInt
和
def fun: T[Int] = _.nextInt
nextInt将M带到(Int, M)?
nextInt
M
(Int, M)