Skip to content

Commit

Permalink
Update Dict+Ext.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
eonist committed Aug 9, 2023
1 parent 56dde22 commit 9748946
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Sources/Telemetry/ext/Dict+Ext.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ import Foundation

extension Dictionary {
/**
* - Fixme: ⚠️️ add doc
* - Parameter other: - Fixme: ⚠️️ add doc
* - Returns: - Fixme: ⚠️️ add doc
* - Fixme: ⚠️️ Add doc
* - Fixme: ⚠️️ We could also use reduce like shown here: https://stackoverflow.com/a/75548503/5389500
* - Fixme: ⚠️️ We can even add it to a + operator like: `func + <Self>(a: Self, b: Self) -> Self {...}`
* - Parameter other: - Fixme: ⚠️️ Add doc
* - Returns: - Fixme: ⚠️️ Add doc
*/
func combinedWith(_ other: [Key: Value]) -> [Key: Value] {
var dict = self
Expand Down

0 comments on commit 9748946

Please sign in to comment.