Skip to content

Getting Started⚓︎

Installation⚓︎

Npm⚓︎

npm install iterable-linq-utility

Yarn⚓︎

yarn add iterable-linq-utility

Pnpm⚓︎

pnpm i iterable-linq-utility

CDN⚓︎

JsDelivr⚓︎

<!-- TODO: check that it works -->
<script src="https://cdn.jsdelivr.net/npm/iterable-linq-utility"></script>

Unpkg⚓︎

<!-- TODO: check that it works -->
<script src="https://unpkg.com/ag-grid-community/dist/interable-linq-utility.js"></script>

Usage⚓︎

// recommended
import * as IterableLinq from 'iterable-linq-utility'

IterableLinq.from([1,2,3,4]).map(v => v * 10).collectToArray();

// or

import { from } from 'iterable-linq-utility';

from([1,2,3,4]).map(v => v * 10).collectToArray();

TODO

Where to go from here⚓︎

  1. Be sure to check the Basic Concepts
  2. Go to Advanced Concepts to check about advanced usage scenarios and features provided by the utility
  3. Check the Glossary to get more indepth about the utility and meanings of the most important words used by this documentation
  4. Check how you can integrate the utility with other libraries
  5. Compare this library with other similar libraries

Last update: March 22, 2023
Created: March 22, 2023