// // 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 } }