Property definitions

core $ DefaultComparator :: defaultinit
# This comparator uses the operator `<=>` to compare objects.
# see `default_comparator` for an easy-to-use general stateless default comparator.
class DefaultComparator
	super Comparator
	redef type COMPARED: Comparable
	# Return a <=> b
	redef fun compare(a, b) do return a <=> b
end
lib/core/collection/sorter.nit:337,1--344,3