📅  最后修改于: 2020-11-05 04:05:34             🧑  作者: Mango
在Clojure中,元数据用于注释集合中的数据或存储在符号中的数据。通常用于将有关类型的数据注释给基础编译器,但也可以用于开发人员。元数据不被视为对象值的一部分。同时,元数据是不可变的。
关于元数据,在Clojure中可以进行以下操作。
Sr.No. | Operations & Description |
---|---|
1 | meta-with
This function is used to define a metadata map for any object. |
2 | meta
This function is used to see if any metadata is associated with an object. |
3 | vary-meta
Returns an object of the same type and value as the original object, but with a combined metadata. |