type github.com/emirpasic/gods/trees/binaryheap.Heap

27 uses

	github.com/emirpasic/gods/trees/binaryheap (current package)
		binaryheap.go#L23: 	var _ trees.Tree = (*Heap)(nil)
		binaryheap.go#L27: type Heap struct {
		binaryheap.go#L33: func NewWith(comparator utils.Comparator) *Heap {
		binaryheap.go#L34: 	return &Heap{list: arraylist.New(), Comparator: comparator}
		binaryheap.go#L38: func NewWithIntComparator() *Heap {
		binaryheap.go#L39: 	return &Heap{list: arraylist.New(), Comparator: utils.IntComparator}
		binaryheap.go#L43: func NewWithStringComparator() *Heap {
		binaryheap.go#L44: 	return &Heap{list: arraylist.New(), Comparator: utils.StringComparator}
		binaryheap.go#L48: func (heap *Heap) Push(values ...interface{}) {
		binaryheap.go#L66: func (heap *Heap) Pop() (value interface{}, ok bool) {
		binaryheap.go#L80: func (heap *Heap) Peek() (value interface{}, ok bool) {
		binaryheap.go#L85: func (heap *Heap) Empty() bool {
		binaryheap.go#L90: func (heap *Heap) Size() int {
		binaryheap.go#L95: func (heap *Heap) Clear() {
		binaryheap.go#L100: func (heap *Heap) Values() []interface{} {
		binaryheap.go#L105: func (heap *Heap) String() string {
		binaryheap.go#L117: func (heap *Heap) bubbleDown() {
		binaryheap.go#L123: func (heap *Heap) bubbleDownIndex(index int) {
		binaryheap.go#L147: func (heap *Heap) bubbleUp() {
		binaryheap.go#L161: func (heap *Heap) withinRange(index int) bool {
		iterator.go#L15: 	heap  *Heap
		iterator.go#L20: func (heap *Heap) Iterator() Iterator {
		serialization.go#L10: 	var _ containers.JSONSerializer = (*Heap)(nil)
		serialization.go#L11: 	var _ containers.JSONDeserializer = (*Heap)(nil)
		serialization.go#L15: func (heap *Heap) ToJSON() ([]byte, error) {
		serialization.go#L20: func (heap *Heap) FromJSON(data []byte) error {

	github.com/go-git/go-git/v5/plumbing/object
		commit_walker_ctime.go#L15: 	heap         *binaryheap.Heap