15 lines
184 B
Swift
15 lines
184 B
Swift
|
//
|
||
|
// Array+IsNotEmpty.swift
|
||
|
// Mastodon
|
||
|
//
|
||
|
// Created by Marcus Kida on 01.12.22.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
extension Collection {
|
||
|
var isNotEmpty: Bool {
|
||
|
!isEmpty
|
||
|
}
|
||
|
}
|