GBA-8-19/DeltaFeatures/Types/OptionValue.swift
2024-06-14 17:15:51 +08:00

22 lines
447 B
Swift

//
// OptionValue.swift
// Hthik
//
// Created by Hthik on 4/11/23.
// Copyright © 2024 Hthik
//
import Foundation
public protocol OptionValue
{
}
extension Data: OptionValue {}
extension Optional: OptionValue where Wrapped: OptionValue {}
extension Array: OptionValue where Element: OptionValue {}
extension Set: OptionValue where Element: OptionValue {}
extension Dictionary: OptionValue where Key: OptionValue, Value: OptionValue {}