diff options
author | Lynn C. Rees <lcrees@gmail.com> | 2017-11-10 10:13:01 -0700 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-11-10 18:13:01 +0100 |
commit | c7dbbe21070907ab683021767f95a945bcfcb966 (patch) | |
tree | dfde795af38a78c60133217164e3441788bff0f1 /lib | |
parent | 5c2a920a2830ed17dae9347f819087d5186370e1 (diff) | |
download | Nim-c7dbbe21070907ab683021767f95a945bcfcb966.tar.gz |
Add heapqueue module to doc index (#6655)
Add copyright header to heapqueue modlue
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/collections/heapqueue.nim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/pure/collections/heapqueue.nim b/lib/pure/collections/heapqueue.nim index f86ba1d3f..60869142e 100644 --- a/lib/pure/collections/heapqueue.nim +++ b/lib/pure/collections/heapqueue.nim @@ -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 |