I have a class Dog in Scala:
case class Dog(age: Int)
And a list with dogs like this:
val dogs: List[Dog] = Dog(5) :: Dog(2) :: Dog(4) :: Nil
.
I want a list with only the dogs with age > 4, how can I do that?
Many thanks!
Vasco
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…