Is there a way to remove this if else
block inside snackbar by replacing it with lambda
or infix
or anything to make it without +2 nesting in cognitive complexity
else {
snackBarBuilder(
activities,
"failure",
"Sorry, text " + if (classofobj.innerclass.toString() == "1") {
"good"
} else {
"bad"
}
)
}
You can define your own generic ternary function:
and then use it like so:
You can also have an
infix
variant but I doubt that it makes things more readable and it has some precedence strings attached :