mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-18 08:41:31 -07:00
More package lines.
This commit is contained in:
@@ -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,3 +1,4 @@
|
||||
// package slice implements utility procedures for working with slices, including sorting and searching them.
|
||||
package slice
|
||||
|
||||
import "base:intrinsics"
|
||||
|
||||
Reference in New Issue
Block a user