mirror of
https://github.com/mastodon/mastodon-ios
synced 2025-04-11 22:58:02 +02:00
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
|
|
}
|
|
}
|