Skip to content

UseCollectionIsEmpty fixes#12

Open
subisueno wants to merge 2 commits intowalkmod:masterfrom
subisueno:master
Open

UseCollectionIsEmpty fixes#12
subisueno wants to merge 2 commits intowalkmod:masterfrom
subisueno:master

Conversation

@subisueno
Copy link

-------- list.isEmpty conditions -------------

list.size() == 0
list.size() <= 0
list.size() < 1

0 == list.size()
0 >= list.size()
1 > list.size()

-------- !list.isEmpty conditions -------------

list.size() != 0
list.size() > 0
list.size() >= 1

0 != list.size()
0 < list.size()
1 <= list.size()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant