Add String() to comments for all structures

pull/202/head
Emir Pasic 2 years ago
commit 6a0f91bdd5

@ -30,4 +30,5 @@ type List interface {
// Size() int
// Clear()
// Values() []interface{}
// String() string
}

@ -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)

@ -25,4 +25,5 @@ type Set interface {
// Size() int
// Clear()
// Values() []interface{}
// String() string
}

@ -22,4 +22,5 @@ type Stack interface {
// Size() int
// Clear()
// Values() []interface{}
// String() string
}

@ -18,4 +18,5 @@ type Tree interface {
// Size() int
// Clear()
// Values() []interface{}
// String() string
}

Loading…
Cancel
Save