mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 06:20:28 +00:00
8 lines
169 B
Go
8 lines
169 B
Go
|
package objects
|
||
|
|
||
|
// Iterable represents an object that has iterator.
|
||
|
type Iterable interface {
|
||
|
// Iterate should return an Iterator for the type.
|
||
|
Iterate() Iterator
|
||
|
}
|