-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (117 loc) · 23.9 KB
/
index.html
File metadata and controls
119 lines (117 loc) · 23.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>@jsq/seq</title><meta name="description" content="Documentation for @jsq/seq"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="assets/style.css"/><link rel="stylesheet" href="assets/highlight.css"/><script async src="assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
<div class="tsd-toolbar-contents container">
<div class="table-cell" id="tsd-search" data-base=".">
<div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
<ul class="results">
<li class="state loading">Preparing search index...</li>
<li class="state failure">The search index is not available</li></ul><a href="index.html" class="title">@jsq/seq</a></div>
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
<div class="container container-main">
<div class="col-8 col-content">
<div class="tsd-page-title">
<h2>@jsq/seq</h2></div>
<div class="tsd-panel tsd-typography">
<a href="#async-sequence-operators" id="async-sequence-operators" style="color: inherit; text-decoration: none;">
<h1>Async sequence operators</h1>
</a>
<p><a href="https://badge.fury.io/js/%40jsq%2Fseq"><img src="https://badge.fury.io/js/%40jsq%2Fseq.svg" alt="npm version"></a>
[<img src="https://badgen.net/bundlephobia/minzip/@jsq/seq" alt="minified gzipped size">]
<a href="https://opensource.org/licenses/Apache-2.0"><img src="https://img.shields.io/github/license/jeskew/seq.svg?style=flat" alt="Apache 2 License"></a></p>
<p>This package provides a number of functions for filtering, reducing, combining,
and otherwise transforming synchronous or asynchronous iterables. Where
possible, the functions in this library mirror those found on <code>Array.prototype</code>.
Unlike the methods on <code>Array.prototype</code>, all functions are evaluated lazily and
will only be applied to values as they are produced.</p>
<a href="#synchronous-and-asynchronous-iteration" id="synchronous-and-asynchronous-iteration" style="color: inherit; text-decoration: none;">
<h2>Synchronous and asynchronous iteration</h2>
</a>
<p>Functions that decorate a single iterator will return a synchronous iterable if
called with a synchronous iterable and an asynchronous iterable if called with
an asynchronous iterable. These functions may also be suffixed with <code>Sync</code> for
strictly synchronous usage:</p>
<pre><code class="language-typescript"><span class="hl-0">import</span><span class="hl-1"> { </span><span class="hl-2">map</span><span class="hl-1">, </span><span class="hl-2">mapSync</span><span class="hl-1"> } </span><span class="hl-0">from</span><span class="hl-1"> </span><span class="hl-3">'@jsq/seq'</span><span class="hl-1">;</span><br/><br/><span class="hl-4">// Synchronous iterables can be decorated and still consumed synchronously</span><br/><span class="hl-5">declare</span><span class="hl-1"> </span><span class="hl-5">function</span><span class="hl-1"> </span><span class="hl-6">syncSequence</span><span class="hl-1">(): </span><span class="hl-7">Iterable</span><span class="hl-1"><</span><span class="hl-7">number</span><span class="hl-1">>;</span><br/><span class="hl-5">const</span><span class="hl-1"> [</span><span class="hl-8">first</span><span class="hl-1">, </span><span class="hl-8">second</span><span class="hl-1">, </span><span class="hl-8">third</span><span class="hl-1">] = </span><span class="hl-6">mapSync</span><span class="hl-1">(</span><span class="hl-2">x</span><span class="hl-1"> </span><span class="hl-5">=></span><span class="hl-1"> </span><span class="hl-2">x</span><span class="hl-1"> * </span><span class="hl-2">x</span><span class="hl-1">, </span><span class="hl-6">syncSequence</span><span class="hl-1">());</span><br/><br/><span class="hl-4">// Asynchronous iterables must be consumed asynchronously</span><br/><span class="hl-5">declare</span><span class="hl-1"> </span><span class="hl-5">function</span><span class="hl-1"> </span><span class="hl-6">asyncSequence</span><span class="hl-1">(): </span><span class="hl-7">AsyncIterable</span><span class="hl-1"><</span><span class="hl-7">number</span><span class="hl-1">>;</span><br/><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-8">squares</span><span class="hl-1"> = </span><span class="hl-6">map</span><span class="hl-1">(</span><span class="hl-2">x</span><span class="hl-1"> </span><span class="hl-5">=></span><span class="hl-1"> </span><span class="hl-2">x</span><span class="hl-1"> * </span><span class="hl-2">x</span><span class="hl-1">, </span><span class="hl-6">asyncSequence</span><span class="hl-1">())[</span><span class="hl-2">Symbol</span><span class="hl-1">.</span><span class="hl-2">asyncIterator</span><span class="hl-1">]();</span><br/><span class="hl-5">const</span><span class="hl-1"> { </span><span class="hl-8">done</span><span class="hl-1">, </span><span class="hl-8">value</span><span class="hl-1"> } = </span><span class="hl-0">await</span><span class="hl-1"> </span><span class="hl-2">squares</span><span class="hl-1">.</span><span class="hl-6">next</span><span class="hl-1">();</span><br/><br/><span class="hl-4">// When unsure, use a consumer that can handle both types of iterator</span><br/><span class="hl-5">declare</span><span class="hl-1"> </span><span class="hl-5">function</span><span class="hl-1"> </span><span class="hl-6">anySequence</span><span class="hl-1">(): </span><span class="hl-7">Iterable</span><span class="hl-1"><</span><span class="hl-7">number</span><span class="hl-1">>|</span><span class="hl-7">AsyncIterable</span><span class="hl-1"><</span><span class="hl-7">number</span><span class="hl-1">>;</span><br/><span class="hl-0">for</span><span class="hl-1"> </span><span class="hl-0">await</span><span class="hl-1"> (</span><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-8">squared</span><span class="hl-1"> </span><span class="hl-5">of</span><span class="hl-1"> </span><span class="hl-6">map</span><span class="hl-1">(</span><span class="hl-2">x</span><span class="hl-1"> </span><span class="hl-5">=></span><span class="hl-1"> </span><span class="hl-2">x</span><span class="hl-1"> * </span><span class="hl-2">x</span><span class="hl-1">, </span><span class="hl-6">asyncSequence</span><span class="hl-1">())) {</span><br/><span class="hl-1"> </span><span class="hl-4">// ...</span><br/><span class="hl-1">}</span>
</code></pre>
<p>Functions that operate on multiple iterables, such as <code>zip</code>, <code>merge</code>,
<code>interleave</code>, or <code>flatMap</code>, will always return asynchronous iterables.</p>
<p>Functions that reduce iterables to a single value, such as <code>sum</code>, <code>collect</code>, or
<code>reduce</code>, will always return a promise, though the provided iterator may be
consumed synchronously.</p>
<a href="#currying" id="currying" style="color: inherit; text-decoration: none;">
<h2>Currying</h2>
</a>
<p>All functions take an iterable as their last argument, which allows you to curry
and compose operators with <code>bind</code>:</p>
<pre><code class="language-typescript"><span class="hl-0">import</span><span class="hl-1"> { </span><span class="hl-2">filter</span><span class="hl-1"> } </span><span class="hl-0">from</span><span class="hl-1"> </span><span class="hl-3">'@jsq/seq'</span><span class="hl-1">;</span><br/><br/><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-8">evens</span><span class="hl-1"> = </span><span class="hl-2">filter</span><span class="hl-1">.</span><span class="hl-6">bind</span><span class="hl-1">(</span><span class="hl-5">null</span><span class="hl-1">, </span><span class="hl-2">x</span><span class="hl-1"> </span><span class="hl-5">=></span><span class="hl-1"> </span><span class="hl-2">x</span><span class="hl-1"> % </span><span class="hl-9">2</span><span class="hl-1"> === </span><span class="hl-9">0</span><span class="hl-1">);</span>
</code></pre>
<p>For documentation of the functions provided by this library, please see <a href="https://jeskew.github.io/seq/">the API
documentation</a>.</p>
</div></div>
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
<div class="tsd-navigation settings">
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Settings</h3></summary>
<div class="tsd-accordion-details">
<div class="tsd-filter-visibility">
<h4 class="uppercase">Member Visibility</h4><form>
<ul id="tsd-filter-options">
<li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li>
<li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li>
<li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div>
<div class="tsd-theme-toggle">
<h4 class="uppercase">Theme</h4><select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div>
<nav class="tsd-navigation primary">
<details class="tsd-index-accordion" open><summary class="tsd-accordion-summary">
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
<div class="tsd-accordion-details">
<ul>
<li class="current selected"><a href="modules.html">@jsq/seq</a>
<ul></ul></li></ul></div></details></nav>
<nav class="tsd-navigation secondary menu-sticky">
<ul>
<li class="tsd-kind-interface"><a href="interfaces/RecursiveAsyncIterable.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-256-path"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)" id="icon-256-text"></path></svg>Recursive<wbr/>Async<wbr/>Iterable</a></li>
<li class="tsd-kind-interface"><a href="interfaces/RecursiveSyncIterable.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Recursive<wbr/>Sync<wbr/>Iterable</a></li>
<li class="tsd-kind-type-alias"><a href="types/ElementOrIterable.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-4194304-path"></rect><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)" id="icon-4194304-text"></path></svg>Element<wbr/>Or<wbr/>Iterable</a></li>
<li class="tsd-kind-type-alias"><a href="types/RecursiveIterable.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg>Recursive<wbr/>Iterable</a></li>
<li class="tsd-kind-function"><a href="functions/collect.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-64-path"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)" id="icon-64-text"></path></svg>collect</a></li>
<li class="tsd-kind-function"><a href="functions/concat.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>concat</a></li>
<li class="tsd-kind-function"><a href="functions/distinct.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>distinct</a></li>
<li class="tsd-kind-function"><a href="functions/distinctSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>distinct<wbr/>Sync</a></li>
<li class="tsd-kind-function"><a href="functions/every.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>every</a></li>
<li class="tsd-kind-function"><a href="functions/everySync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>every<wbr/>Sync</a></li>
<li class="tsd-kind-function"><a href="functions/filter.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>filter</a></li>
<li class="tsd-kind-function"><a href="functions/filterSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>filter<wbr/>Sync</a></li>
<li class="tsd-kind-function"><a href="functions/find.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>find</a></li>
<li class="tsd-kind-function"><a href="functions/findSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>find<wbr/>Sync</a></li>
<li class="tsd-kind-function"><a href="functions/flatMap.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>flat<wbr/>Map</a></li>
<li class="tsd-kind-function"><a href="functions/flatten.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>flatten</a></li>
<li class="tsd-kind-function"><a href="functions/includes.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>includes</a></li>
<li class="tsd-kind-function"><a href="functions/includesSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>includes<wbr/>Sync</a></li>
<li class="tsd-kind-function"><a href="functions/interleave.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>interleave</a></li>
<li class="tsd-kind-function"><a href="functions/isAsyncIterable.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>is<wbr/>Async<wbr/>Iterable</a></li>
<li class="tsd-kind-function"><a href="functions/isSyncIterable.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>is<wbr/>Sync<wbr/>Iterable</a></li>
<li class="tsd-kind-function"><a href="functions/iteratorFromIterable.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>iterator<wbr/>From<wbr/>Iterable</a></li>
<li class="tsd-kind-function"><a href="functions/map.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>map</a></li>
<li class="tsd-kind-function"><a href="functions/mapSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>map<wbr/>Sync</a></li>
<li class="tsd-kind-function"><a href="functions/merge.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>merge</a></li>
<li class="tsd-kind-function"><a href="functions/range.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>range</a></li>
<li class="tsd-kind-function"><a href="functions/reduce.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>reduce</a></li>
<li class="tsd-kind-function"><a href="functions/reduceSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>reduce<wbr/>Sync</a></li>
<li class="tsd-kind-function"><a href="functions/repeat.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>repeat</a></li>
<li class="tsd-kind-function"><a href="functions/skip.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>skip</a></li>
<li class="tsd-kind-function"><a href="functions/skipSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>skip<wbr/>Sync</a></li>
<li class="tsd-kind-function"><a href="functions/skipWhile.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>skip<wbr/>While</a></li>
<li class="tsd-kind-function"><a href="functions/skipWhileSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>skip<wbr/>While<wbr/>Sync</a></li>
<li class="tsd-kind-function"><a href="functions/some.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>some</a></li>
<li class="tsd-kind-function"><a href="functions/someSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>some<wbr/>Sync</a></li>
<li class="tsd-kind-function"><a href="functions/sum.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>sum</a></li>
<li class="tsd-kind-function"><a href="functions/sumSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>sum<wbr/>Sync</a></li>
<li class="tsd-kind-function"><a href="functions/take.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>take</a></li>
<li class="tsd-kind-function"><a href="functions/takeSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>take<wbr/>Sync</a></li>
<li class="tsd-kind-function"><a href="functions/takeWhile.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>take<wbr/>While</a></li>
<li class="tsd-kind-function"><a href="functions/takeWhileSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>take<wbr/>While<wbr/>Sync</a></li>
<li class="tsd-kind-function"><a href="functions/tap.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>tap</a></li>
<li class="tsd-kind-function"><a href="functions/zip.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>zip</a></li>
<li class="tsd-kind-function"><a href="functions/zipSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>zip<wbr/>Sync</a></li></ul></nav></div></div>
<div class="container tsd-generator">
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
<div class="overlay"></div><script src="assets/main.js"></script></body></html>