mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-10 07:13:28 +01:00
13 lines
192 B
Swift
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
|
|
}
|
|
}
|