chiark / gitweb /
base: Export unsigned-fixnum as a handy type to have.
authorMark Wooding <mdw@distorted.org.uk>
Wed, 17 May 2006 18:48:05 +0000 (19:48 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Wed, 17 May 2006 19:06:55 +0000 (20:06 +0100)
mdw-base.lisp

index e87c51191ab1e155c07758839b8b1c9ba26c7efc..c4c3e1748224af8bb00c0c73d3aa98363880ca71 100644 (file)
@@ -28,7 +28,8 @@
 
 (defpackage #:mdw.base
   (:use #:common-lisp)
-  (:export #:compile-time-defun
+  (:export #:unsigned-fixnum
+          #:compile-time-defun
           #:show
           #:stringify #:mappend #:listify #:fix-pair #:pairify #:parse-body
           #:whitespace-char-p
@@ -43,6 +44,13 @@ (defpackage #:mdw.base
 
 (in-package #:mdw.base)
 
+;;;--------------------------------------------------------------------------
+;;; Useful types.
+
+(deftype unsigned-fixnum ()
+  "Unsigned fixnums; useful as array indices and suchlike."
+  `(mod ,most-positive-fixnum))
+
 ;;;--------------------------------------------------------------------------
 ;;; Some simple macros to get things going.