mirror of
https://github.com/nicoverbruggen/phpmon.git
synced 2025-08-08 12:29:54 +02:00
18 lines
364 B
Swift
18 lines
364 B
Swift
//
|
|
// DictionaryExtension.swift
|
|
// PHP Monitor
|
|
//
|
|
// Created by Nico Verbruggen on 01/11/2022.
|
|
// Copyright © 2023 Nico Verbruggen. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Dictionary {
|
|
mutating func renameKey(fromKey: Key, toKey: Key) {
|
|
if let entry = removeValue(forKey: fromKey) {
|
|
self[toKey] = entry
|
|
}
|
|
}
|
|
}
|