当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia replace!用法及代码示例


用法一

replace!(A, old_new::Pair...; [count::Integer])

对于 old_new 中的每一对 old=>new ,将集合 A 中所有出现的 old 替换为 new 。使用 isequal 确定相等性。如果指定了count,则总共最多替换count。另见 replace

例子

julia> replace!([1, 2, 1, 3], 1=>0, 2=>4, count=2)
4-element Vector{Int64}:
 0
 4
 1
 3

julia> replace!(Set([1, 2, 3]), 1=>0)
Set{Int64} with 3 elements:
  0
  2
  3

用法二

replace!(new::Function, A; [count::Integer])

将集合 A 中的每个元素 x 替换为 new(x) 。如果指定了 count,则最多替换 count 值(替换定义为 new(x) !== x )。

例子

julia> replace!(x -> isodd(x) ? 2x : x, [1, 2, 3, 4])
4-element Vector{Int64}:
 2
 2
 6
 4

julia> replace!(Dict(1=>2, 3=>4)) do kv
           first(kv) < 3 ? first(kv)=>3 : kv
       end
Dict{Int64, Int64} with 2 entries:
  3 => 4
  1 => 3

julia> replace!(x->2x, Set([3, 6]))
Set{Int64} with 2 elements:
  6
  12

相关用法


注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Base.replace! — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。