tweaks some comments

This commit is contained in:
liuyuecai 2024-04-09 22:38:02 +08:00
parent c170cc0ab0
commit bce03a2f1f
2 changed files with 6 additions and 6 deletions

View file

@ -15,7 +15,7 @@ import "cmp"
// The size of a block of data // The size of a block of data
const blockSize = 4096 const blockSize = 4096
// A prioritized item in the sorted stack. // item a prioritized item in the sorted stack.
type item[P cmp.Ordered, V any] struct { type item[P cmp.Ordered, V any] struct {
value V value V
priority P priority P
@ -26,7 +26,7 @@ type item[P cmp.Ordered, V any] struct {
// to delete elements other than the top one. // to delete elements other than the top one.
type SetIndexCallback[V any] func(data V, index int) type SetIndexCallback[V any] func(data V, index int)
// Internal sortable stack data structure. Implements the Push and Pop ops for // sstack internal sortable stack data structure. Implements the Push and Pop ops for
// the stack (heap) functionality and the Len, Less and Swap methods for the // the stack (heap) functionality and the Len, Less and Swap methods for the
// sortability requirements of the heaps. // sortability requirements of the heaps.
type sstack[P cmp.Ordered, V any] struct { type sstack[P cmp.Ordered, V any] struct {

View file

@ -23,13 +23,13 @@ import (
) )
const ( const (
// The blocksize of BLAKE2b in bytes. // BlockSize the blocksize of BLAKE2b in bytes.
BlockSize = 128 BlockSize = 128
// The hash size of BLAKE2b-512 in bytes. // Size the hash size of BLAKE2b-512 in bytes.
Size = 64 Size = 64
// The hash size of BLAKE2b-384 in bytes. // Size384 the hash size of BLAKE2b-384 in bytes.
Size384 = 48 Size384 = 48
// The hash size of BLAKE2b-256 in bytes. // Size256 the hash size of BLAKE2b-256 in bytes.
Size256 = 32 Size256 = 32
) )