% Function REMHASH
Function REMHASH
remhash
key hash-table => generalized-boolean
key - オブジェクト
hash-table - ハッシュテーブル
generalized-boolean - generalized-boolean
hash-table内のkeyに対応するエントリーが存在すれば削除します。 そのようなエントリーが存在したときはtrueを、 それ以外はfalseを返却します。
(setq table (make-hash-table)) => #<HASH-TABLE EQL 0/120 32115666>
(setf (gethash 100 table) "C") => "C"
(gethash 100 table) => "C", true
(remhash 100 table) => true
(gethash 100 table) => NIL, false
(remhash 100 table) => false
hash-tableは修正されます。
なし。
なし。
なし。
なし。