Documentation ¶
Index ¶
- type BoolQueue
- type ByteQueue
- type Complex128Queue
- type Complex64Queue
- type ErrorQueue
- type Float32Queue
- type Float64Queue
- type Int16Queue
- type Int32Queue
- type Int64Queue
- type Int8Queue
- type IntQueue
- type RuneQueue
- type StringQueue
- type T
- type TQueue
- type Uint16Queue
- type Uint32Queue
- type Uint64Queue
- type Uint8Queue
- type UintQueue
- type UintptrQueue
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Complex128Queue ¶
type Complex128Queue struct {
// contains filtered or unexported fields
}
func NewComplex128Queue ¶
func NewComplex128Queue() *Complex128Queue
noinspection GoUnusedExportedFunction
func (*Complex128Queue) Count ¶
func (q *Complex128Queue) Count() int
func (*Complex128Queue) Dequeue ¶
func (q *Complex128Queue) Dequeue() (v complex128, ok bool)
func (*Complex128Queue) Enqueue ¶
func (q *Complex128Queue) Enqueue(v complex128) (ok bool)
type Complex64Queue ¶
type Complex64Queue struct {
// contains filtered or unexported fields
}
func NewComplex64Queue ¶
func NewComplex64Queue() *Complex64Queue
noinspection GoUnusedExportedFunction
func (*Complex64Queue) Count ¶
func (q *Complex64Queue) Count() int
func (*Complex64Queue) Dequeue ¶
func (q *Complex64Queue) Dequeue() (v complex64, ok bool)
func (*Complex64Queue) Enqueue ¶
func (q *Complex64Queue) Enqueue(v complex64) (ok bool)
type ErrorQueue ¶
type ErrorQueue struct {
// contains filtered or unexported fields
}
func (*ErrorQueue) Count ¶
func (q *ErrorQueue) Count() int
func (*ErrorQueue) Dequeue ¶
func (q *ErrorQueue) Dequeue() (v error, ok bool)
func (*ErrorQueue) Enqueue ¶
func (q *ErrorQueue) Enqueue(v error) (ok bool)
type Float32Queue ¶
type Float32Queue struct {
// contains filtered or unexported fields
}
func (*Float32Queue) Count ¶
func (q *Float32Queue) Count() int
func (*Float32Queue) Dequeue ¶
func (q *Float32Queue) Dequeue() (v float32, ok bool)
func (*Float32Queue) Enqueue ¶
func (q *Float32Queue) Enqueue(v float32) (ok bool)
type Float64Queue ¶
type Float64Queue struct {
// contains filtered or unexported fields
}
func (*Float64Queue) Count ¶
func (q *Float64Queue) Count() int
func (*Float64Queue) Dequeue ¶
func (q *Float64Queue) Dequeue() (v float64, ok bool)
func (*Float64Queue) Enqueue ¶
func (q *Float64Queue) Enqueue(v float64) (ok bool)
type Int16Queue ¶
type Int16Queue struct {
// contains filtered or unexported fields
}
func (*Int16Queue) Count ¶
func (q *Int16Queue) Count() int
func (*Int16Queue) Dequeue ¶
func (q *Int16Queue) Dequeue() (v int16, ok bool)
func (*Int16Queue) Enqueue ¶
func (q *Int16Queue) Enqueue(v int16) (ok bool)
type Int32Queue ¶
type Int32Queue struct {
// contains filtered or unexported fields
}
func (*Int32Queue) Count ¶
func (q *Int32Queue) Count() int
func (*Int32Queue) Dequeue ¶
func (q *Int32Queue) Dequeue() (v int32, ok bool)
func (*Int32Queue) Enqueue ¶
func (q *Int32Queue) Enqueue(v int32) (ok bool)
type Int64Queue ¶
type Int64Queue struct {
// contains filtered or unexported fields
}
func (*Int64Queue) Count ¶
func (q *Int64Queue) Count() int
func (*Int64Queue) Dequeue ¶
func (q *Int64Queue) Dequeue() (v int64, ok bool)
func (*Int64Queue) Enqueue ¶
func (q *Int64Queue) Enqueue(v int64) (ok bool)
type StringQueue ¶
type StringQueue struct {
// contains filtered or unexported fields
}
func (*StringQueue) Count ¶
func (q *StringQueue) Count() int
func (*StringQueue) Dequeue ¶
func (q *StringQueue) Dequeue() (v string, ok bool)
func (*StringQueue) Enqueue ¶
func (q *StringQueue) Enqueue(v string) (ok bool)
type Uint16Queue ¶
type Uint16Queue struct {
// contains filtered or unexported fields
}
func (*Uint16Queue) Count ¶
func (q *Uint16Queue) Count() int
func (*Uint16Queue) Dequeue ¶
func (q *Uint16Queue) Dequeue() (v uint16, ok bool)
func (*Uint16Queue) Enqueue ¶
func (q *Uint16Queue) Enqueue(v uint16) (ok bool)
type Uint32Queue ¶
type Uint32Queue struct {
// contains filtered or unexported fields
}
func (*Uint32Queue) Count ¶
func (q *Uint32Queue) Count() int
func (*Uint32Queue) Dequeue ¶
func (q *Uint32Queue) Dequeue() (v uint32, ok bool)
func (*Uint32Queue) Enqueue ¶
func (q *Uint32Queue) Enqueue(v uint32) (ok bool)
type Uint64Queue ¶
type Uint64Queue struct {
// contains filtered or unexported fields
}
func (*Uint64Queue) Count ¶
func (q *Uint64Queue) Count() int
func (*Uint64Queue) Dequeue ¶
func (q *Uint64Queue) Dequeue() (v uint64, ok bool)
func (*Uint64Queue) Enqueue ¶
func (q *Uint64Queue) Enqueue(v uint64) (ok bool)
type Uint8Queue ¶
type Uint8Queue struct {
// contains filtered or unexported fields
}
func (*Uint8Queue) Count ¶
func (q *Uint8Queue) Count() int
func (*Uint8Queue) Dequeue ¶
func (q *Uint8Queue) Dequeue() (v uint8, ok bool)
func (*Uint8Queue) Enqueue ¶
func (q *Uint8Queue) Enqueue(v uint8) (ok bool)
type UintptrQueue ¶
type UintptrQueue struct {
// contains filtered or unexported fields
}
func (*UintptrQueue) Count ¶
func (q *UintptrQueue) Count() int
func (*UintptrQueue) Dequeue ¶
func (q *UintptrQueue) Dequeue() (v uintptr, ok bool)
func (*UintptrQueue) Enqueue ¶
func (q *UintptrQueue) Enqueue(v uintptr) (ok bool)
Click to show internal directories.
Click to hide internal directories.