In Scala, how to check if a Map contains all entries from another Map?

前端 未结 2 2102
暗喜
暗喜 2021-02-19 11:00

Total newb question. Say I have 2 maps

val map1 = Map(\"ram\"->\"2gb\", \"size\"->\"15\", \"color\"->\"red\", \"fruit\"->\"strawberry\")
val map2 =          


        
2条回答
  •  渐次进展
    2021-02-19 11:37

    You can convert a Map to a Set and then apply the subsetOf method.

    val map1 = Map("ram"->"2gb", "size"->"15", "color"->"red", "fruit"->"strawberry")
    val map2 = Map("ram"->"2gb", "size"->"15", "color"->"red")
    
    map2.toSet subsetOf map1.toSet // res0: Boolean = true
    

提交回复
热议问题