mutating func _replaceAll()

in Sources/System/Util.swift [124:128]


  mutating func _replaceAll(_ e: Element, with new: Element) {
    for idx in self.indices {
      if self[idx] == e { self[idx] = new }
    }
  }