From 4258986d75d293035bb84141bcb69e998ca36102 Mon Sep 17 00:00:00 2001 From: AJ Rossini Date: Wed, 23 Dec 2009 14:43:36 +0100 Subject: [PATCH] refactoring objects/functions in the data component. Signed-off-by: AJ Rossini --- src/packages.lisp | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/src/packages.lisp b/src/packages.lisp index c241721..2fa591b 100644 --- a/src/packages.lisp +++ b/src/packages.lisp @@ -1,6 +1,6 @@ ;;; -*- mode: lisp -*- -;;; Time-stamp: <2009-12-23 14:31:44 tony> +;;; Time-stamp: <2009-12-23 14:41:54 tony> ;;; Creation: <2008-03-11 19:18:34 user> ;;; File: packages.lisp ;;; Author: AJ Rossini @@ -180,29 +180,33 @@ (defpackage :cls-dataio (:documentation "Data I/O and similar import technologies.") (:use :common-lisp + :rsm.string :lisp-stat-object-system :cls-data - :cls-dataframe - :rsm.string) + :cls-dataframe) (:shadowing-import-from :lisp-stat-object-system call-method call-next-method) - (:export dsvstream->dataframe dsvstream->matrix dsvstream->listoflist)) + (:export dsvstream->dataframe + dsvstream->matrix + dsvstream->listoflist + + filename.dsv->dataframe + )) (defpackage :cls-datatrans (:documentation "Data I/O and similar import technologies.") (:use :common-lisp + :listoflist :lisp-stat-object-system :cls-data - :cls-dataframe - :rsm.string) + :cls-dataframe) (:shadowing-import-from :lisp-stat-object-system call-method call-next-method) - (:export dsvstream->dataframe dsvstream->matrix dsvstream->listoflist + (:export listoflist->dataframe dataframe->listoflist + listoflist->array array->listoflist + listoflist->matrix-like matrix-like->listoflist - listoflist->dataframe - listoflist->array - listoflist->matrix-like - filename.dsv->dataframe )) + )) ;;;; MODELING -- 2.11.4.GIT