r8632: updates
[kmrcl.git] / seqs.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          seqs.lisp
6 ;;;; Purpose:       Sequence functions for KMRCL package
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2000
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; KMRCL users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (in-package :kmrcl)
20
21
22 (defun nsubseq (sequence start &optional end)
23   "Return a subsequence by pointing to location in original sequence"
24   (unless end (setq end (length sequence)))
25   (make-array (- end start)
26               :element-type (array-element-type sequence)
27               :displaced-to sequence
28               :displaced-index-offset start))