Checks if the array inside the Opt is empty or if the instance is None.
Opt
opt([1, 2, 3]).isEmptyIn() // falseopt([]).isEmptyIn() // truenone.isEmptyIn() // true
Checks if the array inside the
Opt
is empty or if the instance is None.