Clojure - vector-of
创建单个基本类型"t"的新向量,其中"t"是 :int :long :float :double :byte :short :char 或 :boolean 之一。 生成的向量符合一般向量的接口,但在内部存储未装箱的值。
语法
语法如下。
(vector-of t setofelements)
参数 − "t"是向量元素应有的类型。 "Setofelements"是向量中包含的元素集。
返回值 − 所需类型的元素向量集。
示例
以下是 Clojure 中的 vector-of 示例。
(ns clojure.examples.example (:require [clojure.set :as set]) (:gen-class)) (defn example [] (println (vector-of :int 1 2 3))) (example)
输出
上面的代码产生以下输出。
[1 2 3]