menu
fast_app_base package
documentation
common/dart/kotlin_style/kotlin_collections.dart
$KotlinCollection<E>
whereNot method
whereNot method
dark_mode
light_mode
whereNot
method
Iterable
<
E
>
whereNot
(
bool
test
(
E
element
)
)
Implementation
Iterable<E> whereNot(bool Function(E element) test) => where((element) => !test(element));
fast_app_base package
documentation
common/dart/kotlin_style/kotlin_collections
$KotlinCollection<E>
whereNot method
$KotlinCollection extension on
Iterable
<
E
>