org.armedbear.lisp.protocol.Hashtable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abcl Show documentation
Show all versions of abcl Show documentation
Common Lisp implementation running on the JVM
package org.armedbear.lisp.protocol;
/** Mark object as implementing the Hashtable protocol. */
public interface Hashtable
extends org.armedbear.lisp.protocol.LispObject
{
public org.armedbear.lisp.LispObject getEntries();
@Deprecated
public org.armedbear.lisp.LispObject ENTRIES();
}