Get list func from element

This commit is contained in:
世界 2022-06-29 14:22:15 +08:00
parent 849d16c37b
commit 880f405c03
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -34,3 +34,7 @@ func (l *List[T]) Array() []T {
}
return array
}
func (e *Element[T]) List() *List[T] {
return e.list
}