From: Alexandre Terrasa Date: Tue, 21 Apr 2015 20:26:29 +0000 (-0400) Subject: metrics: allow Metric sorting X-Git-Tag: v0.7.4~8^2~6 X-Git-Url: http://nitlanguage.org metrics: allow Metric sorting Signed-off-by: Alexandre Terrasa --- diff --git a/src/metrics/metrics_base.nit b/src/metrics/metrics_base.nit index c51e656..7881e75 100644 --- a/src/metrics/metrics_base.nit +++ b/src/metrics/metrics_base.nit @@ -211,6 +211,11 @@ interface Metric # The set of element above the threshold fun above_threshold: Set[ELM] is abstract + + # Sort the metric keys by values + fun sort: Array[ELM] do + return values.keys_sorted_by_values(default_reverse_comparator) + end end # A Metric that collects integer data @@ -338,7 +343,6 @@ class FloatMetric print "{"\t" * indent} sum: {sum}" end end - end # A MetricSet is a metric holder