/** * Contains a set of functions implementing [LINQ-like](https://learn.microsoft.com/en-us/dotnet/api/system.linq) * chained extension methods that helps you evaluate on a sequence of element efficiently & elegantly. * * @see [TC 39 Stage 3 Draft: Iterator Helpers](https://tc39.es/proposal-iterator-helpers/) * * @module */ export * from "./linqWrapper"; export * from "./operators"; export * from "./traits";