修复srt序号错误以及模式3无译文的问题
This commit is contained in:
parent
8b57abe8ee
commit
c381852b49
3 changed files with 32 additions and 7 deletions
|
@ -20,6 +20,8 @@ type List[E any] interface {
|
|||
Set(index uint, element E) bool
|
||||
// Iterator 获取列表的迭代器
|
||||
Iterator() Iterator[E]
|
||||
// ReverseIterator 反向迭代器,从尾部向前迭代
|
||||
ReverseIterator() Iterator[E]
|
||||
}
|
||||
|
||||
// Queue 队列
|
||||
|
|
Reference in a new issue