// apparmor.d - Full set of apparmor profiles // Copyright (C) 2021-2024 Alexandre Pujol // SPDX-License-Identifier: GPL-2.0-only package aa type Rlimit struct { Key string 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 }