jcburley / joker

Small Clojure interpreter and linter
Eclipse Public License 1.0
7 stars 0 forks source link

Support Conversion of Go Objects to Clojure Representation #16

Open jcburley opened 5 years ago

jcburley commented 5 years ago

Unsure of the proper name for it, but let's say (go-convert g) would, given (type g) => GoObject[...], return a canonical Clojure representation, such as an Int, Number, vector, map, etc.

jcburley commented 4 years ago

vec, nth, get, count, and similar functions now work on GoObjects wrapping appropriate types (such as []string and []byte).