&T min(set[&T] st)
import Set;
rascal>import Set; ok rascal>min({1, 3, 5, 2, 4}); int: 1 rascal>min({"elephant", "zebra", "snake"}); str: "elephant"
min({"Barkley the Dog"}) ==