Added more inspectors for maldiff

This commit is contained in:
2018-03-10 00:25:37 +01:00
parent 92b6947169
commit 1f2a8a3eda
7 changed files with 234 additions and 2 deletions

View File

@ -0,0 +1,33 @@
package animediff
// RomajiTitle describes differing Romaji titles.
type RomajiTitle struct {
TitleA string
TitleB string
NumericHash uint64
}
// Type returns the diff type.
func (diff *RomajiTitle) Type() string {
return "RomajiTitle"
}
// Explanation returns the description.
func (diff *RomajiTitle) Explanation() string {
return "Romaji titles are different"
}
// DetailsA shows the details for the first anime.
func (diff *RomajiTitle) DetailsA() string {
return diff.TitleA
}
// DetailsB shows the details for the second anime.
func (diff *RomajiTitle) DetailsB() string {
return diff.TitleB
}
// Hash returns the hash for the suggested value (from anime B).
func (diff *RomajiTitle) Hash() uint64 {
return diff.NumericHash
}