darq 0.1.2 copy "darq: ^0.1.2" to clipboard
darq: ^0.1.2 copied to clipboard

outdated

The power of lazy-evaluated enumerables in your hands! (A port of functional LINQ from the .NET library.)

example/main.dart

import 'package:darq/darq.dart';

void main() {
  final numbers = List.generate(100, (i) => i * 100);
  final enumerable = E(numbers);

  for (var value in enumerable) {
    print(value);
  }

  print(enumerable.Max());
  print(enumerable.Min());

  print(enumerable.Average());
  print(enumerable.Sum());
}
141
likes
0
pub points
95%
popularity

Publisher

unverified uploader

The power of lazy-evaluated enumerables in your hands! (A port of functional LINQ from the .NET library.)

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on darq