给定元组:
let tuple = (true, 1)
我如何在条件中使用这个元组?像这样的东西:
if tuple.first then //doesnt work
或者
if x,_ = tuple then // doesnt work
我不想这样做:
let isTrue value =
let b,_ = value
b
if isTrue tuple then // boring
有没有一种很好的方法来评估条件内的元组值而不创建单独的函数?