summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDaniel Santos <dacs.git@brilhante.top>2023-01-10 21:41:54 +0000
committerDaniel Santos <dacs.git@brilhante.top>2023-01-10 21:41:54 +0000
commit97fb7e9d0b7863759789e49a33a34b26d96d7639 (patch)
treef6910364b1aa4c550b266cf2ad6b4f2f9d2ccf49
parent2f950d3af7f3e8e6ad535d4ab99845ff168732ac (diff)
downloadcl-math-97fb7e9d0b7863759789e49a33a34b26d96d7639.tar.gz
may-reverse not needed for implode and explode
-rw-r--r--cl-math.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cl-math.lisp b/cl-math.lisp
index 77337d2..a0782eb 100644
--- a/cl-math.lisp
+++ b/cl-math.lisp
@@ -17,11 +17,11 @@
 
 (defun explode (number)
   "Given a number (which can have letters), it returns a list of the number"
-  (may-reverse (loop for letter across (write-to-string number) collect (intern (string letter)))))
+  (loop for letter across (write-to-string number) collect (intern (string letter))))
 
 (defun implode (number)
   "Given a list of a number (which can have letters), it returns the number"
-  (intern (apply #'concatenate 'string (mapcar #'symbol-name (may-reverse number)))))
+  (intern (apply #'concatenate 'string (mapcar #'symbol-name number))))
 
 (defun next-list-number (numerals number-list)
   "Given a list of a numeral system and a list of a number, it returns a list of the next number."