Created
January 18, 2021 14:45
-
-
Save mohsinbmwm3/1c95d8e078a554d7ea2844ccc1dc1265 to your computer and use it in GitHub Desktop.
Array swift extensions.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
extension Array { | |
var isNotEmpty: Bool { | |
return !isEmpty | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment