list_utils library
List utilities module for Dartlin package.
This module provides list extensions and utilities including:
- List manipulation and transformation utilities
- Functional programming helpers for lists
Example usage:
import 'package:darlin/list_utils.dart';
void main() {
final list = [1, 2, 3, 4, 5];
// Use list extensions and utilities here
}
Extensions
-
ListChecks
on List<
T> ? - Extensions on nullable List to provide Kotlin-like null safety checks.
-
ListUtils
on List<
T> - Extensions on List to provide additional utility methods.