Skip to content

A library for filtering lists, sets, and maps asynchronously.

License

Notifications You must be signed in to change notification settings

Adrian-Samoticha/async_filter.dart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A library that provides methods to filter lists, sets, and maps asynchronously.

Getting started

Add the package to your pubspec.yaml file:

dependencies:
  async_filter: ^1.0.0

Afterward, import the package:

import 'package:async_filter/async_filter.dart';

Usage

This package provides an asyncFilter method for lists, sets, and maps. The method takes a predicate function that returns a Future<bool> and filters the collection asynchronously.

The predicate is executed for all elements in parallel.

Example:

final numbers = <int>[1, 2, 3, 5, 6, 7];
var result = await numbers.asyncFilter((x) async => x < 5); // (1, 2, 3)
result = await numbers.asyncFilter((x) async => x > 5); // (6, 7)
result = await numbers.asyncFilter((x) async => x.isEven); // (2, 6)

About

A library for filtering lists, sets, and maps asynchronously.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages