collections – 将org.w3c.dom.NodeList转换为Clojure ISeq

前端之家收集整理的这篇文章主要介绍了collections – 将org.w3c.dom.NodeList转换为Clojure ISeq前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试处理新的defprotocol,reify等.

我有一个从XPath调用返回的org.w3c.dom.NodeList,我想将它“转换”为一个ISeq.

Scala中,我实现了一个隐式转换方法

  1. implicit def nodeList2Traversable(nodeList: NodeList): Traversable[Node] = {
  2. new Traversable[Node] {
  3. def foreach[A](process: (Node) => A) {
  4. for (index <- 0 until nodeList.getLength) {
  5. process(nodeList.item(index))
  6. }
  7. }
  8. }
  9. }

NodeList包括方法int getLength()和Node item(int index).

我如何在Clojure中做相同的操作?我希望我需要使用defprotocol.我需要定义哪些函数来创建seq?

如果我使用循环和重复进行简单,天真的转换到列表,我将得到一个非惰性结构.

解决方法

Clojure的大多数序列处理函数都返回lazy seqs,包括map和range函数
  1. (defn node-list-seq [^org.w3c.dom.NodeList node-list]
  2. (map (fn [index] (.item node-list index))
  3. (range (.getLength node-list))))

请注意,上面的NodeList类型提示不是必需的,但可以提高性能.

现在您可以像这样使用该功能

  1. (map #(.getLocalName %) (node-list-seq your-node-list))

猜你在找的C&C++相关文章