clojure.lang
Interface IPersistentCollection

All Superinterfaces:
Seqable
All Known Subinterfaces:
Associative, IChunkedSeq, IndexedSeq, IPersistentList, IPersistentMap, IPersistentSet, IPersistentStack, IPersistentVector, ISeq
All Known Implementing Classes:
AMapEntry, APersistentMap, APersistentMap.KeySeq, APersistentMap.ValSeq, APersistentSet, APersistentVector, APersistentVector.RSeq, APersistentVector.SubVector, ArraySeq, ArraySeq.ArraySeq_boolean, ArraySeq.ArraySeq_byte, ArraySeq.ArraySeq_char, ArraySeq.ArraySeq_double, ArraySeq.ArraySeq_float, ArraySeq.ArraySeq_int, ArraySeq.ArraySeq_long, ArraySeq.ArraySeq_short, ASeq, ChunkedCons, Cons, EnumerationSeq, IteratorSeq, LazySeq, MapEntry, PersistentArrayMap, PersistentHashMap, PersistentHashSet, PersistentList, PersistentQueue, PersistentStructMap, PersistentTreeMap, PersistentTreeMap.Seq, PersistentTreeSet, PersistentVector, PersistentVector.ChunkedSeq, Range, StringSeq

public interface IPersistentCollection
extends Seqable

Copyright (c) Rich Hickey. All rights reserved. The use and distribution terms for this software are covered by the Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) which can be found in the file epl-v10.html at the root of this distribution. By using this software in any fashion, you are agreeing to be bound by the terms of this license. You must not remove this notice, or any other, from this software.


Method Summary
 IPersistentCollection cons(Object o)
           
 int count()
           
 IPersistentCollection empty()
           
 boolean equiv(Object o)
           
 
Methods inherited from interface clojure.lang.Seqable
seq
 

Method Detail

count

int count()

cons

IPersistentCollection cons(Object o)

empty

IPersistentCollection empty()

equiv

boolean equiv(Object o)


Copyright © 2014. All Rights Reserved.