This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Dictionary+MapKeys.swift | |
// | |
// Created by Felix Mau on 14.06.21. | |
// Copyright © 2021 Felix Mau. All rights reserved. | |
// | |
extension Dictionary { | |
/// Returns a new dictionary containing the keys transformed by the given closure. | |
/// The values of this dictionary stay the same. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// SwiftUI+HTML.swift | |
// | |
// Created by Felix Mau on 28.05.21. | |
// Copyright © 2021 Felix Mau. All rights reserved. | |
// | |
import SwiftUI | |
@available(iOS 15.0, *) |
OlderNewer