seqable? was added in Clojure 1.9 On Fri, Apr 20, 2018 at 9:54 AM, ru <[email protected]> wrote:
> user=> (seqable? [1 2]) > > > CompilerException java.lang.RuntimeException: Unable to resolve symbol: > seqable? in this context, compiling:(/private/var/ > folders/5j/k0rtjxqn3b57nykc_1jf2xnr0000gn/T/form- > init6382892774167052117.clj:1:1) > > user=> > > пятница, 20 апреля 2018 г., 18:35:45 UTC+3 пользователь tbc++ написал: >> >> It's not a seq, but it's seqable. >> >> (seq? [1 2]) => false >> (seqable? [1 2]) => true >> (seq? (seq [1 2])) => true >> >> >> >> On Fri, Apr 20, 2018 at 9:33 AM, ru <[email protected]> wrote: >> >>> Hi, >>> >>> user=> (seq? [1 2 3 4 5]) >>> >>> false >>> >>> user=> >>> >>> >>> Sincerely, >>> >>> Ru >>> >>> -- >>> 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 >>> --- >>> You received this message because you are subscribed to the Google >>> Groups "Clojure" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to [email protected]. >>> For more options, visit https://groups.google.com/d/optout. >>> >> >> >> >> -- >> “One of the main causes of the fall of the Roman Empire was that–lacking >> zero–they had no way to indicate successful termination of their C >> programs.” >> (Robert Firth) >> > -- > 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 > --- > You received this message because you are subscribed to the Google Groups > "Clojure" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- “One of the main causes of the fall of the Roman Empire was that–lacking zero–they had no way to indicate successful termination of their C programs.” (Robert Firth) -- 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 --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
