More package lines.

This commit is contained in:
Jeroen van Rijn
2025-10-09 20:40:13 +02:00
parent 8a35acd506
commit 2bc409eab5
9 changed files with 13 additions and 10 deletions
+3 -3
View File
@@ -1,3 +1,6 @@
// package heap implements a generic in-place max heap on a slice for any type.
package heap
/*
Copyright 2022 Dale Weiler <weilercdale@gmail.com>.
Made available under Odin's BSD-3 license.
@@ -6,9 +9,6 @@
Dale Weiler: Initial implementation
*/
// Package implements a generic max heap in-place on a slice for any type.
package heap
/*
Constructs a max heap in slice given by data with comparator. A max heap is
a range of elements which has the following properties:
+1
View File
@@ -1,3 +1,4 @@
// package slice implements utility procedures for working with slices, including sorting and searching them.
package slice
import "base:intrinsics"