Skip to content

Commit

Permalink
Add heapqueue module to doc index (#6655)
Browse files Browse the repository at this point in the history
Add copyright header to heapqueue modlue
  • Loading branch information
lynncrees authored and Araq committed Nov 10, 2017
1 parent 5c2a920 commit c7dbbe2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/pure/collections/heapqueue.nim
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@

#
#
# Nim's Runtime Library
# (c) Copyright 2016 Yuriy Glukhov
#
# See the file "copying.txt", included in this
# distribution, for details about the copyright.

##[ Heap queue algorithm (a.k.a. priority queue). Ported from Python heapq.
Heaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for
Expand Down
1 change: 1 addition & 0 deletions web/website.ini
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ srcdoc2: "deprecated/pure/ftpclient;pure/collections/chains"
srcdoc2: "pure/asyncfile;pure/asyncftpclient"
srcdoc2: "pure/md5;pure/rationals"
srcdoc2: "posix/posix;pure/distros;pure/oswalkdir"
srcdoc2: "pure/collections/heapqueue"
srcdoc2: "pure/fenv;pure/securehash;impure/rdstdin"
srcdoc2: "pure/basic2d;pure/basic3d;pure/mersenne;pure/coro;pure/httpcore"
srcdoc2: "pure/bitops;pure/nimtracker;pure/punycode;pure/volatile"
Expand Down

0 comments on commit c7dbbe2

Please sign in to comment.