use generics to DRY up context code

This commit is contained in:
Jesse Duffield
2022-03-19 09:31:52 +11:00
parent 4b56d428ff
commit d93fef4c61
31 changed files with 117 additions and 364 deletions

View File

@@ -109,7 +109,7 @@ type IController interface {
type IList interface {
IListCursor
GetItemsLength() int
Len() int
}
type IListCursor interface {