标签: variables haskell alias
我有一个小问题。我有函数参数写的像
f (a,b,c,d,e)
有没有办法用别名来引用整个元组(a,b,c,d,e)?
答案 0 :(得分:12)
您似乎需要as pattern
f o@(a,b,c,d,e) = ...