saving development state...

This commit is contained in:
Jae Kwon
2014-08-30 04:17:10 -07:00
parent 50544c50af
commit d300a67bb1
46 changed files with 2458 additions and 1058 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ type Time struct {
time.Time
}
func (self Time) Equals(other Binary) bool {
func (self Time) Equals(other interface{}) bool {
if o, ok := other.(Time); ok {
return self.Equal(o.Time)
} else {
@@ -17,7 +17,7 @@ func (self Time) Equals(other Binary) bool {
}
}
func (self Time) Less(other Binary) bool {
func (self Time) Less(other interface{}) bool {
if o, ok := other.(Time); ok {
return self.Before(o.Time)
} else {