allNotNull
Util method that returns the result of block if both var1 and var2 are not null. Otherwise returns null.
allNotNull(var1, var2) { v1, v2 -> ... }Content copied to clipboard
Util method that returns the result of block if all three var1, var2 and var3 are not null. Otherwise returns null.
allNotNull(var1, var2, var3) { v1, v2, v3 -> ... }Content copied to clipboard