diff options
Diffstat (limited to 'container.go')
| -rw-r--r-- | container.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/container.go b/container.go index 6982efe..147400d 100644 --- a/container.go +++ b/container.go @@ -32,8 +32,9 @@ type Container struct { headers *ContainerHeaders } -func (c *Container) isEqualTo(other *Container) bool { - return other.name == c.name && other.a.isEqualTo(c.a) +//IsEqualTo returns true if both Container instances refer to the same container. +func (c *Container) IsEqualTo(other *Container) bool { + return other.name == c.name && other.a.IsEqualTo(c.a) } //Container returns a handle to the container with the given name within this |
