Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BoolQueue ¶
type BoolQueue struct {
// contains filtered or unexported fields
}
BoolQueue -- キュー
func NewBoolQueue ¶
func NewBoolQueue() *BoolQueue
NewBoolQueue -- 新しいキューを生成して返します.
noinspection GoUnusedExportedFunction
type StringQueue ¶
type StringQueue struct {
// contains filtered or unexported fields
}
StringQueue -- キュー
func NewStringQueue ¶
func NewStringQueue() *StringQueue
NewStringQueue -- 新しいキューを生成して返します.
noinspection GoUnusedExportedFunction
func (*StringQueue) Dequeue ¶
func (q *StringQueue) Dequeue() (v string, ok bool)
Dequeue -- データを取り出します.
func (*StringQueue) Enqueue ¶
func (q *StringQueue) Enqueue(v string) (ok bool)
Enqueue -- データを投入します.
Click to show internal directories.
Click to hide internal directories.