In other functional languages I can ignore part of...
# announcements
n
In other functional languages I can ignore part of the tuple while destructing . Here is my code.
Copy code
val (cost , _) = timed { costs() }
. The timed function returns a
Pair<T,Long>
. How do I ignore
Long
in the result?