Thank you for the explanations. I saw sequential in an example out on
the web. At first, I thought it had something to do with the ordering
of a sequence's elements.

cmn

On Jul 7, 5:22 pm, Mark Rathwell <[email protected]> wrote:
> What it means exactly is that there is an interface called Sequential
> (defined 
> inhttps://github.com/clojure/clojure/blob/master/src/jvm/clojure/lang/S...)
> that some other interfaces and abstract classes implement or extend, and
> some clojure data structures that you use implement or extend those, thereby
> implementing the Sequential interface, and so instances of those data
> structures will return true for this function.
>
> What it means practically, is that the data structure is seqential, like a
> list or vector, and not like a map.  Depending on what you are wanting to
> use it for, there may be a better function to consider.
>
> If you want to explore the relationships in the language, some people seem
> to like Clojure Atlas:http://www.clojureatlas.com/
>
> <http://www.clojureatlas.com/>
>
> On Thu, Jul 7, 2011 at 4:48 PM, octopusgrabbus 
> <[email protected]>wrote:
>
>
>
>
>
>
>
> > What does this mean exactly?
>
> > sequential?
> > function
>
> > Usage: (sequential? coll)
>
> > Returns true if coll implements Sequential
>
> > from
> >http://clojure.github.com/clojure/clojure.core-api.html#clojure.core/...
>
> > --
> > 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 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

Reply via email to