Ejemplo n.º 1
0
  /**
   * Set the value of the entry identified by <code>key</code> in <code>self</code> to <code>value
   * </code> or add a new entry if no entry with <code>key</code> exists yet. Uses an <code>eqlP
   * </code> test by default or <code>equalP</code> if <code>equalTestP</code> of <code>self</code>
   * is TRUE.
   *
   * @param key
   * @param value
   */
  public void insertAt(Stella_Object key, Stella_Object value) {
    {
      StellaHashTable self = this;

      StellaHashTable.stellaHashTableInsertAt(self, key, value);
      return;
    }
  }