假设我有HList
类型A :: B :: C
和函数(A, B, C) => D
。如何以最简单和最惯用的方式编写函数A :: B :: C => D
?
答案 0 :(得分:4)
toProduct
中有方法syntax.std.function
:
import shapeless._
import syntax.std.function._
def testf(d: Double, l: Long, i: Int): String = s"$d, $l, $i"
(testf _).toProduct
// Double :: Long :: Int :: HNil => String = <function1>
请参阅Feature overview: shapeless 2.0.0/Facilities for abstracting over arity。