(macaddr>? macaddr1 macaddr2)
This predicate returns #t if macaddr1 is greater than macaddr2, otherwise #f is returned. When passing non MAC addresses to this predicate an argument error is signalled.
#t or #f
> (macaddr>? '01:00:00:00:00:00 '02:00:00:00:00:00)
#f
> (macaddr<? '01:00:00:00:00:00 '02:00:00:00:00:00)
#t
>