v0.0.7 #12

Merged
timi merged 4 commits from dev into master 2026-08-11 15:54:10 +00:00
Showing only changes of commit 99fb2f62f2 - Show all commits
@@ -81,6 +81,15 @@ public interface TimiJava {
return false;
}
static boolean allEmpty(Object... objects) {
for (Object object : objects) {
if (isNotEmpty(object)) {
return false;
}
}
return true;
}
static boolean allNotEmpty(Object... objects) {
for (Object object : objects) {
if (isEmpty(object)) {