Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: packages/quiver_iterables/README.md

Issue 2119523002: Added full js & js_util packages (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « packages/quiver_iterables/LICENSE ('k') | packages/quiver_iterables/lib/iterables.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 Quiver Iterables
2 ================
3
4 A collection of utilities for generating and manipulating Dart Iterables.
5
6 [![Build Status](https://travis-ci.org/QuiverDart/quiver_iterables.svg?branch=ma ster)](https://travis-ci.org/QuiverDart/quiver_iterables)
7 [![Coverage Status](https://img.shields.io/coveralls/QuiverDart/quiver_iterables .svg)](https://coveralls.io/r/QuiverDart/quiver_iterables)
8
9 ## Documentation
10
11 [API Docs](http://www.dartdocs.org/documentation/quiver_iterables/latest)
12
13 `concat`, `count`, `cycle`, `enumerate`, `merge`, `partition`, `range`, and
14 `zip` create, transform, or combine Iterables in different ways, similar to
15 Python's itertools.
16
17 `min`, `max`, and `extent` retrieve the minimum and maximum elements from an
18 iterable.
19
20 `GeneratingIterable` is an easy way to create lazy iterables that produce
21 elements by calling a function. A common use-case is to traverse properties in
22 an object graph, like the parent relationship in a tree.
23
24 `InfiniteIterable` is a base class for Iterables that throws on operations that
25 require a finite length.
OLDNEW
« no previous file with comments | « packages/quiver_iterables/LICENSE ('k') | packages/quiver_iterables/lib/iterables.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698