isIn method
- List list
override
Returns 1
(of width=1) if the Logic calling this function is in
list
. Else 0
(of width=1) if not present.
The list
can be Logic or int or bool or BigInt or
list
of dynamic
i.e combinition of aforementioned types.
Implementation
@override
Logic isIn(List<dynamic> list) => packed.isIn(list);