Add String() to comments for all structures

This commit is contained in:
Emir Pasic
2022-04-13 21:19:40 +02:00
5 changed files with 5 additions and 0 deletions
+1
View File
@@ -30,4 +30,5 @@ type List interface {
// Size() int
// Clear()
// Values() []interface{}
// String() string
}
+1
View File
@@ -29,6 +29,7 @@ type Map interface {
// Size() int
// Clear()
// Values() []interface{}
// String() string
}
// BidiMap interface that all bidirectional maps implement (extends the Map interface)
+1
View File
@@ -25,4 +25,5 @@ type Set interface {
// Size() int
// Clear()
// Values() []interface{}
// String() string
}
+1
View File
@@ -22,4 +22,5 @@ type Stack interface {
// Size() int
// Clear()
// Values() []interface{}
// String() string
}
+1
View File
@@ -18,4 +18,5 @@ type Tree interface {
// Size() int
// Clear()
// Values() []interface{}
// String() string
}