clojure.lang
Interface Associative

All Superinterfaces:
ILookup, IPersistentCollection, Seqable
All Known Subinterfaces:
IPersistentMap, IPersistentVector
All Known Implementing Classes:
AMapEntry, APersistentMap, APersistentVector, MapEntry, PersistentArrayMap, PersistentHashMap, PersistentStructMap, PersistentTreeMap, PersistentVector

public interface Associative
extends IPersistentCollection, ILookup

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
 Associative assoc(Object key, Object val)
           
 boolean containsKey(Object key)
           
 IMapEntry entryAt(Object key)
           
 
Methods inherited from interface clojure.lang.IPersistentCollection
cons, count, empty, equiv
 
Methods inherited from interface clojure.lang.Seqable
seq
 
Methods inherited from interface clojure.lang.ILookup
valAt, valAt
 

Method Detail

containsKey

boolean containsKey(Object key)

entryAt

IMapEntry entryAt(Object key)

assoc

Associative assoc(Object key,
                  Object val)


Copyright © 2012. All Rights Reserved.