Filtering a list of tuples
Fairly straight forward, with no real advantage IMHO:
valuesAsList.filter(_._2 != 7)
You can
valuesAsList.filter(_._2 != 7)
But I doubt it should be preferred over your example or this (think readability):
valuesAsList.filter {case (_, v) => v != 7}