Is struct or create-struct deprecated?. I´ve read here that I should use defrecord instead: https://clojuredocs.org/clojure.core/struct
Thanks R.
Is struct or create-struct deprecated?. I´ve read here that I should use defrecord instead: https://clojuredocs.org/clojure.core/struct
Thanks R.
According to "Why have both deftype and defrecord?", ...
Overall, records will be better than structmaps for all information-bearing purposes, and you should move such structmaps to defrecord. It is unlikely much code was trying to use structmaps for programming constructs, but if so, you will find deftype much more suitable.
According to the Clojure v1.8 API documenatation the struct and create-struct are not deprecated.