feat(aa-log): add less & equals rule methods.
This commit is contained in:
parent
923bb66eba
commit
e23e10d7b7
17 changed files with 394 additions and 86 deletions
|
|
@ -9,3 +9,19 @@ type Rlimit struct {
|
|||
Op string
|
||||
Value string
|
||||
}
|
||||
|
||||
func (r *Rlimit) Less(other any) bool {
|
||||
o, _ := other.(*Rlimit)
|
||||
if r.Key == o.Key {
|
||||
if r.Op == o.Op {
|
||||
return r.Value < o.Value
|
||||
}
|
||||
return r.Op < o.Op
|
||||
}
|
||||
return r.Key < o.Key
|
||||
}
|
||||
|
||||
func (r *Rlimit) Equals(other any) bool {
|
||||
o, _ := other.(*Rlimit)
|
||||
return r.Key == o.Key && r.Op == o.Op && r.Value == o.Value
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue