Files
SideStore/Sources/Cargo/xcframework/Extensions/Collection+Extensions.swift

13 lines
192 B
Swift
Raw Normal View History

2023-03-01 00:48:36 -05:00
//
// Collection-Extensions.swift
// swift-create-xcframework
//
// Created by Rob Amos on 9/5/20.
//
extension Collection {
var nonEmpty: Self? {
isEmpty ? nil : self
}
}