sci

borkdude 2024-01-30T17:19:25.754699Z

it is the awkward Java notation for a Double array

Ingy döt Net 2024-01-30T17:22:13.118499Z

Thanks. Why does that section not have the other usual values? (allPublicMethods, methods, etc)

borkdude 2024-01-30T17:27:45.173629Z

if you don't specify those, only some of the information will be available, e.g. for instance checks, but not for doing interop

Ingy döt Net 2024-01-30T17:28:24.147599Z

Makes sense. Thanks.

Ingy döt Net 2024-01-30T20:05:19.637309Z

What is foo used for in (sci/create-ns 'foo) ?

borkdude 2024-01-30T21:20:02.174559Z

This creates an object which resembles a namespace object in Clojure on which you can call ns-name , etc

Ingy döt Net 2024-01-30T21:29:51.921259Z

Got it. Had to check. Works. Good to Know. Thanks.

Ingy döt Net 2024-01-30T21:30:31.022909Z

wait. not sure now. sec

Ingy döt Net 2024-01-30T21:35:47.397569Z

using (ns-name (the-ns (quote foobar))) to test, but changing the symbol in the code didn't change the result. I'll dig more to find what's up later on...