summaryrefslogtreecommitdiff
path: root/src/hash-tables.lisp
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2025-10-19 07:26:56 +0300
committerGravatar Uko Kokņevičs2025-10-19 07:26:56 +0300
commit3b2af0dccba0b51d1d43bc950cf1b2a9f8fecfa6 (patch)
treeb222f24d5e35824a562aef4f4974de9f88cf9b59 /src/hash-tables.lisp
parentMake config be a global special variable (diff)
downloadukkoclot-3b2af0dccba0b51d1d43bc950cf1b2a9f8fecfa6.tar.gz
ukkoclot-3b2af0dccba0b51d1d43bc950cf1b2a9f8fecfa6.tar.xz
ukkoclot-3b2af0dccba0b51d1d43bc950cf1b2a9f8fecfa6.zip
Migrate packages from :ukkoclot to :ukkoclot/src
Diffstat (limited to 'src/hash-tables.lisp')
-rw-r--r--src/hash-tables.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hash-tables.lisp b/src/hash-tables.lisp
index 4290387..f285aa2 100644
--- a/src/hash-tables.lisp
+++ b/src/hash-tables.lisp
@@ -1,11 +1,11 @@
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/src/hash-tables
4 (:documentation "Hash-table-oriented utilities.") 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 :gethash-lazy)) 7 (:export :gethash-lazy))
8(in-package :ukkoclot/hash-tables) 8(in-package :ukkoclot/src/hash-tables)
9 9
10(defmacro gethash-lazy (key hash-table default-lazy) 10(defmacro gethash-lazy (key hash-table default-lazy)
11 "`gethash' alternative with lazily evaluated default value." 11 "`gethash' alternative with lazily evaluated default value."