ClojureDocs

导航

命名空间

sort

clojure.core

自 1.0 起可用 (源代码)
  • (sort coll)
  • (sort comp coll)
Returns a sorted sequence of the items in coll. If no comparator is
supplied, uses compare.  comparator must implement
java.util.Comparator.  Guaranteed to be stable: equal elements will
not be reordered.  If coll is a Java array, it will be modified.  To
avoid this, sort a copy of the array.