1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-04 21:02:27 +08:00

comment: add comment for List struct

This commit is contained in:
dudaodong
2022-01-26 15:25:52 +08:00
parent 957e6356f6
commit e233788f69

View File

@@ -8,6 +8,7 @@ import (
"reflect"
)
// List is a linear table, implemented with slice
type List[T any] struct {
data []T
}