标签: scala
如何扩展Seq以使用与getFields()函数一起使用的可扩展参数?
Seq
getFields()
def getFields(fieldNames: String*): immutable.Seq[JsValue] = fieldNames.flatMap(fields.get)(collection.breakOut) val fields: Seq[String] = List("one", "two", "three") getFields(???)