deck

package
v0.2.8 Latest Latest
Warning

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

Go to latest
Published: Oct 31, 2023 License: MIT Imports: 2 Imported by: 0

Documentation

Overview

Package deck 包中的内容用于针对一堆内容的管理,适用但不限于牌堆、麻将牌堆等情况。

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Deck

type Deck[I Item] struct {
	// contains filtered or unexported fields
}

Deck 甲板,用于针对一堆 Group 进行管理的数据结构

func NewDeck

func NewDeck[I Item]() *Deck[I]

NewDeck 创建一个新的甲板

func (*Deck[I]) AddGroup

func (slf *Deck[I]) AddGroup(group *Group[I])

AddGroup 将一个组添加到甲板中

func (*Deck[I]) GetCount

func (slf *Deck[I]) GetCount() int

GetCount 获取甲板中的组数量

func (*Deck[I]) GetGroups

func (slf *Deck[I]) GetGroups() map[int64]*Group[I]

GetGroups 获取所有组

func (*Deck[I]) GetGroupsSlice

func (slf *Deck[I]) GetGroupsSlice() []*Group[I]

GetGroupsSlice 获取所有组

func (*Deck[I]) GetNext

func (slf *Deck[I]) GetNext(guid int64) *Group[I]

GetNext 获取特定组的下一个组

func (*Deck[I]) GetPrev

func (slf *Deck[I]) GetPrev(guid int64) *Group[I]

GetPrev 获取特定组的上一个组

func (*Deck[I]) RemoveGroup

func (slf *Deck[I]) RemoveGroup(guid int64)

RemoveGroup 移除甲板中的一个组

type Group

type Group[I Item] struct {
	// contains filtered or unexported fields
}

Group 甲板中的组,用于针对一堆内容进行管理的数据结构

func NewGroup

func NewGroup[I Item](guid int64, fillHandle func(guid int64) []I) *Group[I]

NewGroup 创建一个新的组

func (*Group[I]) Fill

func (slf *Group[I]) Fill()

Fill 将该组的数据填充为 WithGroupFillHandle 中设置的内容

func (*Group[I]) GetCount

func (slf *Group[I]) GetCount() int

GetCount 获取组中剩余的内容数量

func (*Group[I]) GetGuid

func (slf *Group[I]) GetGuid() int64

GetGuid 获取组的 guid

func (*Group[I]) GetItem

func (slf *Group[I]) GetItem(index int) I

GetItem 获取组中的指定内容

func (*Group[I]) Insert

func (slf *Group[I]) Insert(item I)

Insert 向底部插入一个内容

func (*Group[I]) InsertN

func (slf *Group[I]) InsertN(items []I)

InsertN 向底部插入指定数量的内容

func (*Group[I]) IsFree

func (slf *Group[I]) IsFree() bool

IsFree 检查组是否为空

func (*Group[I]) Pop

func (slf *Group[I]) Pop() (item I)

Pop 从顶部获取一个内容

func (*Group[I]) PopN

func (slf *Group[I]) PopN(n int) (items []I)

PopN 从顶部获取指定数量的内容

func (*Group[I]) PressOut

func (slf *Group[I]) PressOut() (item I)

PressOut 从底部压出一个内容

func (*Group[I]) PressOutN

func (slf *Group[I]) PressOutN(n int) (items []I)

PressOutN 从底部压出指定数量的内容

func (*Group[I]) Pull

func (slf *Group[I]) Pull(index int) (item I)

Pull 从特定位置拔出一个内容

func (*Group[I]) Push

func (slf *Group[I]) Push(item I)

Push 向顶部压入一个内容

func (*Group[I]) PushN

func (slf *Group[I]) PushN(items []I)

PushN 向顶部压入指定数量的内容

func (*Group[I]) Thrust

func (slf *Group[I]) Thrust(index int, item I)

Thrust 向特定位置插入一个内容

type Item

type Item interface {
}

Item 甲板成员

Jump to

Keyboard shortcuts

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