Skip to content

Commit

Permalink
Merge pull request #86 from ignlg/next
Browse files Browse the repository at this point in the history
bump: v2.1.1
  • Loading branch information
ignlg committed May 28, 2020
2 parents 19f7dca + b9440f7 commit 7fd31cc
Show file tree
Hide file tree
Showing 6 changed files with 71 additions and 955 deletions.
130 changes: 65 additions & 65 deletions dist/docs/classes/_heap_.heap.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/docs/globals.html
Original file line number Diff line number Diff line change
Expand Up @@ -2769,6 +2769,7 @@ <h3>2.1</h3>
<li>Adds <code>Heap.nlargest</code> as heapq.</li>
<li>Adds <code>Heap.nsmallest</code> as heapq.</li>
<li>Sanitizes <code>top</code> / <code>bottom</code> input to force an integer.</li>
<li>Linted with Eslint.</li>
</ul>
<a href="#20" id="20" style="color: inherit; text-decoration: none;">
<h3>2.0</h3>
Expand Down
1 change: 1 addition & 0 deletions dist/docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2769,6 +2769,7 @@ <h3>2.1</h3>
<li>Adds <code>Heap.nlargest</code> as heapq.</li>
<li>Adds <code>Heap.nsmallest</code> as heapq.</li>
<li>Sanitizes <code>top</code> / <code>bottom</code> input to force an integer.</li>
<li>Linted with Eslint.</li>
</ul>
<a href="#20" id="20" style="color: inherit; text-decoration: none;">
<h3>2.0</h3>
Expand Down
6 changes: 3 additions & 3 deletions dist/docs/modules/_heap_.html
Original file line number Diff line number Diff line change
Expand Up @@ -2772,7 +2772,7 @@ <h3>Comparator</h3>
<div class="tsd-signature tsd-kind-icon">Comparator&lt;T&gt;<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span>a<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">T</span>, b<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">number</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/ignlg/heap-js/blob/b637415/src/Heap.ts#L1">Heap.ts:1</a></li>
<li>Defined in <a href="https://github.com/ignlg/heap-js/blob/b703c08/src/Heap.ts#L1">Heap.ts:1</a></li>
</ul>
</aside>
<h4 class="tsd-type-parameters-title">Type parameters</h4>
Expand Down Expand Up @@ -2812,7 +2812,7 @@ <h3>Is<wbr>Equal</h3>
<div class="tsd-signature tsd-kind-icon">Is<wbr>Equal&lt;T&gt;<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span>e<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">T</span>, o<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">boolean</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/ignlg/heap-js/blob/b637415/src/Heap.ts#L2">Heap.ts:2</a></li>
<li>Defined in <a href="https://github.com/ignlg/heap-js/blob/b703c08/src/Heap.ts#L2">Heap.ts:2</a></li>
</ul>
</aside>
<h4 class="tsd-type-parameters-title">Type parameters</h4>
Expand Down Expand Up @@ -2859,7 +2859,7 @@ <h3><span class="tsd-flag ts-flagConst">Const</span> to<wbr>Int</h3>
<li class="tsd-description">
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/ignlg/heap-js/blob/b637415/src/Heap.ts#L4">Heap.ts:4</a></li>
<li>Defined in <a href="https://github.com/ignlg/heap-js/blob/b703c08/src/Heap.ts#L4">Heap.ts:4</a></li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "heap-js",
"version": "2.1.0",
"version": "2.1.1",
"description": "Efficient Binary heap (priority queue, binary tree) data structure for JavaScript / TypeScript. Includes JavaScript methods, Python's heapq module methods, and Java's PriorityQueue methods.",
"keywords": [
"heap",
Expand Down

0 comments on commit 7fd31cc

Please sign in to comment.