summaryrefslogtreecommitdiff
path: root/array.lisp
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-08-07 14:57:27 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-08-07 14:57:27 +0200
commit1b556d9e057c6e3bed4893036d12eed1f3bc238d (patch)
tree51193cf4a28ea955967b3e9440b6508a17cb0d1c /array.lisp
parenta35098ffebf51958f22e0845b5b6803c0dff1dfb (diff)
Add various array operations.
Diffstat (limited to 'array.lisp')
-rw-r--r--array.lisp33
1 files changed, 33 insertions, 0 deletions
diff --git a/array.lisp b/array.lisp
new file mode 100644
index 0000000..2676c06
--- /dev/null
+++ b/array.lisp
@@ -0,0 +1,33 @@
+;;; -*- mode: lisp; coding: utf-8 -*-
+;;; Toilet Lisp, a Common Lisp subset for the Étoilé runtime.
+;;; Copyright (C) 2008 Matthias Andreas Benkard.
+;;;
+;;; This program is free software: you can redistribute it and/or modify
+;;; it under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation, either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; This program is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;;; General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+
+(in-package #:common-lisp)
+
+(export '(aref row-major-aref))
+
+
+(defun row-major-aref (array row-major-index)
+ (send-by-name array "idAtIndex:" row-major-index))
+
+(defun (setf row-major-aref) (new-value array row-major-index)
+ (send-by-name array "replaceIdAtIndex:withId:" row-major-index new-value))
+
+(defun array-dimensions (array)
+ (send-by-name (find-objc-class "MLKCons")
+ "listWithArray:"
+ (send-by-name array "dimensions")))