Files
SideStore/Sources/Cargo/xcframework/Extensions/Collection+Extensions.swift
2023-03-10 19:30:09 -05:00

13 lines
192 B
Swift

//
// Collection-Extensions.swift
// swift-create-xcframework
//
// Created by Rob Amos on 9/5/20.
//
extension Collection {
var nonEmpty: Self? {
isEmpty ? nil : self
}
}