迭代元组
我需要实现一个通用方法,它接受一个元组并返回一个 Map 示例:
val tuple=((1,2),(("A","B"),("C",3)),4)
我一直在尝试将此元组分解为列表:
val list=tuple.productIterator.toList
Scala>list: List[Any] = List((1,2), ((A,B),(C,3)), 4)
但这种方式返回 List[Any] 。
我现在正在尝试找出如何迭代以下元组,例如:
((1,2),(("A","B"),("C",3)),4)
为了循环每个元素 1,2,“A”,B”,...等。我该怎么做?元组迭代
I need to implement a generic method that takes a tuple and returns a Map
Example :
val tuple=((1,2),(("A","B"),("C",3)),4)
I have been trying to break this tuple into a list :
val list=tuple.productIterator.toList
Scala>list: List[Any] = List((1,2), ((A,B),(C,3)), 4)
But this way returns List[Any] .
I am trying now to find out how to iterate over the following tuple ,for example :
((1,2),(("A","B"),("C",3)),4)
in order to loop over each element 1,2,"A",B",...etc. How could I do this kind of iteration over the tuple
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
又怎样呢? :
好的,
Any
问题仍然存在。至少这是由于productIterator
的返回类型造成的。What about? :
Ok, the
Any
-problem remains. At least that´s due to the return type ofproductIterator
.使用 Shapeless 数据结构(例如 HList)代替元组。您可以进行通用处理,并且也不会丢失类型信息。
唯一的问题是文档不是很全面。
Instead of tuples, use Shapeless data structures like HList. You can have generic processing, and also don't lose type information.
The only problem is that documentation isn't very comprehensive.
这对我有用。 transform 是一个由数据帧组成的元组
This works for me. tranform is a tuple consists of dataframes