这个pairs()
是 julia 中的一个内置函数,用于返回指定集合的 key=>value 对的迭代器,该集合将一组键映射到一组值。这包括数组,其中键是数组索引。
用法:
pairs(collection)
or
pairs(IndexStyle(A), A)
参数:
- collection:指定集合。
- IndexStyle(A):指定的迭代器。
- A:指定数组。
返回值:它返回指定集合的 key=>value 对上的迭代器,该集合将一组键映射到一组值。
范例1:
# Julia program to illustrate
# the use of pairs() method
# Getting an iterator over key =>value
# pairs for the specified collection
# that maps a set of keys to a set of values.
A = ["a" "c"; "b" "d"];
println(pairs(A))
输出:
范例2:
# Julia program to illustrate
# the use of pairs() method
# Getting an iterator over key =>value
# pairs for the specified array
A = ["a" "c"; "b" "d"];
for (index, value) in pairs(IndexStyle(A), A)
println("$index $value")
end
输出:
相关用法
- Julia ceil()用法及代码示例
- Julia floor()用法及代码示例
- Julia min()用法及代码示例
- Julia max()用法及代码示例
- Julia trunc()用法及代码示例
- Julia abs()用法及代码示例
- Julia mod()用法及代码示例
- Julia round()用法及代码示例
- Julia axes()用法及代码示例
- Julia findmin()用法及代码示例
- Julia parent()用法及代码示例
- Julia typeof()用法及代码示例
- Julia collect()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Getting key value pairs of a dictionary in Julia – pairs() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。