diff options
| author | 2025-10-18 08:42:44 +0300 | |
|---|---|---|
| committer | 2025-10-18 08:42:44 +0300 | |
| commit | 9e7c8dfab25da9beb86fd4ed4115895eedb4c8ab (patch) | |
| tree | d05cf25dc5aeed47f8b2585ecc5a81ab80cbdbaf /src/hash-tables.lisp | |
| parent | Bunch more tiny improvements (diff) | |
| download | ukkoclot-9e7c8dfab25da9beb86fd4ed4115895eedb4c8ab.tar.gz ukkoclot-9e7c8dfab25da9beb86fd4ed4115895eedb4c8ab.tar.xz ukkoclot-9e7c8dfab25da9beb86fd4ed4115895eedb4c8ab.zip | |
Replace bunch of our string utilities with str library
Diffstat (limited to 'src/hash-tables.lisp')
| -rw-r--r-- | src/hash-tables.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash-tables.lisp b/src/hash-tables.lisp index d3b66dd..84ffbfe 100644 --- a/src/hash-tables.lisp +++ b/src/hash-tables.lisp | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ;; SPDX-License-Identifier: EUPL-1.2 | 1 | ;; SPDX-License-Identifier: EUPL-1.2 |
| 2 | ;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com> | 2 | ;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com> |
| 3 | (defpackage :ukkoclot/hash-tables | 3 | (defpackage :ukkoclot/hash-tables |
| 4 | (:documentation "Utilities for dealing with hash tables.") | 4 | (:documentation "Hash-table-oriented utilities.") |
| 5 | (:use :c2cl) | 5 | (:use :c2cl) |
| 6 | (:import-from :alexandria :with-gensyms) | 6 | (:import-from :alexandria :with-gensyms) |
| 7 | (:export :alist->hash-table :gethash-lazy :plist->hash-table)) | 7 | (:export :alist->hash-table :gethash-lazy :plist->hash-table)) |