Clojure sorted-set

2018-12-21 17:22 更新

返回一組有序的元素。

語(yǔ)法

以下是sorted-set的基本使用語(yǔ)法:

(sorted-set setofelements)

參數(shù)? 'setofelements'是需要排序的元素的集合。

返回值 ? 排序的元素集。

下面是sorted-set函數(shù)的示例:

(ns clojure.examples.example
   (:gen-class))
(defn example []
   (println (sorted-set 3 2 1)))
(example)

輸出

以上示例將輸出以下結(jié)果:

#{1,2,3}
以上內(nèi)容是否對(duì)您有幫助:
在線(xiàn)筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)