// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved. import Foundation public extension Set { func inserting(_ other: Element) -> Set { var updatedSet: Set = self updatedSet.insert(other) return updatedSet } }