修复srt序号错误以及模式3无译文的问题

This commit is contained in:
Hami Lemon 2022-03-28 20:37:37 +08:00
parent 8b57abe8ee
commit c381852b49
3 changed files with 32 additions and 7 deletions

View file

@ -20,6 +20,8 @@ type List[E any] interface {
Set(index uint, element E) bool
// Iterator 获取列表的迭代器
Iterator() Iterator[E]
// ReverseIterator 反向迭代器,从尾部向前迭代
ReverseIterator() Iterator[E]
}
// Queue 队列