Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Float32Queue ¶
type Float32Queue struct {
// contains filtered or unexported fields
}
Float32Queue is a queue of Float32s.
func NewFloat32Queue ¶
func NewFloat32Queue() *Float32Queue
func (*Float32Queue) Pop ¶
func (q *Float32Queue) Pop() float32
func (*Float32Queue) Push ¶
func (q *Float32Queue) Push(item float32)
type IntQueue ¶
type IntQueue struct {
// contains filtered or unexported fields
}
IntQueue is a queue of Ints.
func NewIntQueue ¶
func NewIntQueue() *IntQueue
type SomethingQueue ¶
type SomethingQueue struct {
// contains filtered or unexported fields
}
SomethingQueue is a queue of Somethings.
func NewSomethingQueue ¶
func NewSomethingQueue() *SomethingQueue
func (*SomethingQueue) Pop ¶
func (q *SomethingQueue) Pop() Something
func (*SomethingQueue) Push ¶
func (q *SomethingQueue) Push(item Something)
Click to show internal directories.
Click to hide internal directories.