Michael Wood <[email protected]> writes: > I don't think boolean-array exists in 1.0. Try this instead: > > user=> (into-array Boolean [true true false true]) > #<Boolean[] [Ljava.lang.Boolean;@15fc40c> > > although that gives you an array of Booleans instead of booleans.
(into-array Boolean/TYPE [true false]) ;; => #<boolean[] [...@381a53> -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
