utils

package
v0.0.0-...-b1131f7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 1, 2023 License: MIT Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CheckError

func CheckError(err error)

func DelItem

func DelItem[T comparable](slice []T, item T) []T

func IsItemIn

func IsItemIn[T comparable](slice []T, item T) bool

func IsLower

func IsLower(s string) bool

func IsMapIn

func IsMapIn[T comparable](mapSlice *[]map[string]T, mA map[string]T) bool

func ParseStrInt

func ParseStrInt(number string) int

func ParseStringToIntSlice

func ParseStringToIntSlice(input string) []int

Types

type Item

type Item struct {
	Value    string
	Priority int
	// The Index is needed by update and is maintained by the heap.Interface methods.
	Index int // The index of the item in the heap.
}

Item is something we manage in a priority queue.

type PriorityQueue

type PriorityQueue []*Item

A PriorityQueue implements heap.Interface and holds Items.

func (PriorityQueue) Len

func (pq PriorityQueue) Len() int

func (PriorityQueue) Less

func (pq PriorityQueue) Less(i, j int) bool

func (*PriorityQueue) Pop

func (pq *PriorityQueue) Pop() any

func (*PriorityQueue) Push

func (pq *PriorityQueue) Push(x any)

func (PriorityQueue) Swap

func (pq PriorityQueue) Swap(i, j int)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL