Initial commit

This commit is contained in:
2023-01-09 01:03:19 -05:00
commit 00d75d4488
27 changed files with 3036 additions and 0 deletions

6
iterator/iterator.go Normal file
View File

@@ -0,0 +1,6 @@
package iterator
type Iterator[ELEMENT_TYPE any] interface {
Length() int
Next() ELEMENT_TYPE
}