GBA-8-19/Features/Extensions/Collection+Optionals.swift
bluesea 2d62f40b7c s
2024-06-14 18:16:51 +08:00

20 lines
376 B
Swift

//
// Collection+Optionals.swift
// HthikFeatures
//
// Created by Hthik on 4/12/23.
// Copyright © 2024 Hthik
//
import Foundation
extension Collection
{
func appendingNil() -> [Element] where Element: OptionalProtocol, Element.Wrapped: LocalizedOptionValue
{
var values = Array(self)
values.append(Element.none)
return values
}
}