summaryrefslogtreecommitdiff
path: root/src/hash-tables.lisp
diff options
context:
space:
mode:
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."