gpt4 book ai didi

scala - 如何将 scala.xml.NodeSeq 转换为 Elem?

转载 作者:行者123 更新时间:2023-12-01 11:10:06 25 4
gpt4 key购买 nike

我正在尝试减少元素列表

List(1, 2, 3).map{n => <a>{n}</a>}.reduce{(a,b)=> a ++ b}

但我收到这个错误
<console>:8: error: type mismatch;
found : scala.xml.NodeSeq
required: scala.xml.Elem
List(1, 2, 3).map{n => <a>{n}</a>}.reduce{(a,b)=> a ++ b}

如何将 NodeSeq 转换为 Elem?

最佳答案

我不会使用 reduce在这种情况下。相反,请尝试 foldLeft :

List(1, 2, 3).map{n => <a>{n}</a>}.foldLeft(NodeSeq.Empty){(a,b)=> a ++ b}

我有 a whole blog postmap , reduce , 和 fold如果您不熟悉函数式编程,这可能会有所帮助。

关于scala - 如何将 scala.xml.NodeSeq 转换为 Elem?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24273131/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com