clojure.lang
Interface IPersistentVector

All Superinterfaces:
Associative, Counted, ILookup, Indexed, IPersistentCollection, IPersistentStack, Reversible, Seqable, Sequential
All Known Implementing Classes:
AMapEntry, APersistentVector, APersistentVector.SubVector, MapEntry, PersistentVector

public interface IPersistentVector
extends Associative, Sequential, IPersistentStack, Reversible, Indexed

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
 IPersistentVector assocN(int i, Object val)
           
 IPersistentVector cons(Object o)
           
 int length()
           
 
Methods inherited from interface clojure.lang.Associative
assoc, containsKey, entryAt
 
Methods inherited from interface clojure.lang.ILookup
valAt, valAt
 
Methods inherited from interface clojure.lang.IPersistentStack
peek, pop
 
Methods inherited from interface clojure.lang.IPersistentCollection
count, empty, equiv
 
Methods inherited from interface clojure.lang.Seqable
seq
 
Methods inherited from interface clojure.lang.Reversible
rseq
 
Methods inherited from interface clojure.lang.Indexed
nth, nth
 
Methods inherited from interface clojure.lang.Counted
count
 

Method Detail

length

int length()

assocN

IPersistentVector assocN(int i,
                         Object val)

cons

IPersistentVector cons(Object o)
Specified by:
cons in interface IPersistentCollection


Copyright © 2015. All Rights Reserved.