简体   繁体   中英

Why some of the Clojure functions in clojure.core are not documented?

I found some of the Clojure functions in clojure.core are not documented.

Some of them are private functions. But others like chunk-* and await1 and so on are public but do not have documents. Does that have a specially meaning, or just because of they are new added functions?

Thanks!

The undocumented functions in clojure.core are considered to be part of the implementation, not part of the public interface (so the lack of docstring is intentional). In some cases, undoc'ed functions are called by the expansion of public macros so they must be public.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM