mirror of
https://github.com/fiddlerwoaroof/data-lens.git
synced 2025-11-08 18:26:32 +00:00
Compare commits
115 Commits
gh-pages
...
f10b94ff4e
| Author | SHA1 | Date | |
|---|---|---|---|
| f10b94ff4e | |||
| 274af53a09 | |||
| 11c6fbe12d | |||
| 989454fc28 | |||
| 2207631122 | |||
| 12e689eb52 | |||
| 4614d366fb | |||
| c7af5afb40 | |||
| 5de14dbe74 | |||
| ec166b4a7d | |||
| eb928fce45 | |||
| 0728cb22fa | |||
| e833e39e87 | |||
| 40db934151 | |||
| 2705341bb0 | |||
| 902adc1fe0 | |||
| b7f020d352 | |||
| ea7e56385c | |||
| 98492358e3 | |||
| 74bf33ca21 | |||
| 893b10f81e | |||
| 903c0aaced | |||
| 3f27d70514 | |||
| a3724362b6 | |||
| 6c2d96f0c6 | |||
| 4eab1df341 | |||
| 555b621974 | |||
| 46b1b66291 | |||
| fde90ed5ff | |||
| 7309c59ca8 | |||
| 821ec9407b | |||
| 49358627c2 | |||
| 9c4d29543b | |||
| 08302fae40 | |||
| 6447bcc0c3 | |||
| 4f6b7ef248 | |||
| e0688b8fcc | |||
| f51e305922 | |||
| c9dbe2109f | |||
| 964a3d6d2d | |||
| 65f7fc58f6 | |||
| 5bca889091 | |||
| 0a90adbe04 | |||
| 0c3c2bd08d | |||
| 6b83963208 | |||
| 850ed89193 | |||
| 84eae95bb4 | |||
| ede798a04b | |||
| 945d024355 | |||
| 8fa0b253ab | |||
| a4d622b3df | |||
| 801bc1e033 | |||
| 1be82ea49d | |||
| b7d6687304 | |||
| 78663d73f1 | |||
| a65fc3873a | |||
| 8709d41f8b | |||
| 176572c2c6 | |||
| dc58526088 | |||
| 9f53b1a106 | |||
| f517e52845 | |||
| f20effc399 | |||
| 96a8ea5ee6 | |||
| bf86c538a1 | |||
| 011ddea2de | |||
| 725744a4e0 | |||
| fa22323fa8 | |||
| e694886196 | |||
| 6776568df3 | |||
| 702332c031 | |||
| f75af164ea | |||
| 858bd9d2ff | |||
| bd9ef2fba3 | |||
| 47d7f624ad | |||
| 6136075dca | |||
| 96cc36bb65 | |||
| b158a4c759 | |||
| e8b8c327e9 | |||
| d87106a29e | |||
| 417b3587c5 | |||
| 069826d4c3 | |||
| 80d1feb182 | |||
| a5147afadb | |||
| c56d5c51fd | |||
| db5988ec3a | |||
| d0e894f739 | |||
| e08fccfe1b | |||
| ea96548eb0 | |||
| 1a07eb7339 | |||
| 705dc56244 | |||
| 5bca9a117f | |||
| 6aebcfe4dc | |||
| 1259838639 | |||
| d232497011 | |||
| cf67a11e13 | |||
| 07b0c02806 | |||
| 1310d70f9c | |||
| a7399b43c6 | |||
| 5bd17dc8e5 | |||
| 4139944479 | |||
| 9ce36823e4 | |||
| cefd4fbab3 | |||
| 9ff7f44684 | |||
| 498d659978 | |||
| 1f67b287f5 | |||
| 139535d8e5 | |||
| 3214bdd335 | |||
| b6f51eceaf | |||
| befab03521 | |||
| 8b39d02344 | |||
| 38133d6f0a | |||
| 1dcfeff5de | |||
| 800a03e0c6 | |||
| 32b8a0bb7f | |||
| a224381307 |
76
.github/workflows/test.yml
vendored
Normal file
76
.github/workflows/test.yml
vendored
Normal file
@ -0,0 +1,76 @@
|
||||
name: CI
|
||||
|
||||
# Controls when the workflow will run
|
||||
on:
|
||||
# Triggers the workflow on push or pull request events but only for the master branch
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
workflow_dispatch:
|
||||
|
||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||
jobs:
|
||||
# This workflow contains a single job called "build"
|
||||
build:
|
||||
# The type of runner that the job will run on
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: cachix/install-nix-action@v22
|
||||
with:
|
||||
extra_nix_config: |
|
||||
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- uses: cachix/cachix-action@v12
|
||||
with:
|
||||
name: data-lens
|
||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||
extraPullNames: nix-community
|
||||
|
||||
# Runs a set of commands using the runners shell
|
||||
- name: setup deps
|
||||
run: |
|
||||
set -x
|
||||
cd
|
||||
|
||||
nix profile install nixpkgs\#sbcl
|
||||
|
||||
- name: setup lisp
|
||||
run: |
|
||||
set -x
|
||||
nix profile list
|
||||
export PATH="$HOME/.nix-profile/bin:$PATH"
|
||||
echo $PATH
|
||||
ls ~/.nix-profile/bin
|
||||
sbcl --quit
|
||||
command -v sbcl || exit 36
|
||||
|
||||
wget 'https://beta.quicklisp.org/quicklisp.lisp'
|
||||
[[ -f ./quicklisp.lisp ]] || exit 37
|
||||
|
||||
sbcl --eval '(require :uiop)' \
|
||||
--load quicklisp.lisp \
|
||||
--eval '(handler-case (quicklisp-quickstart:install) (error () (uiop:quit 38)))' \
|
||||
--quit
|
||||
[[ -f "$HOME"/quicklisp/setup.lisp ]] || exit 39
|
||||
|
||||
- name: run tests
|
||||
run: |
|
||||
export PATH="$HOME/.nix-profile/bin:$PATH"
|
||||
cd "$GITHUB_WORKSPACE"
|
||||
ln -s "$GITHUB_WORKSPACE" "$HOME/quicklisp/local-projects"
|
||||
sbcl --disable-debugger --no-userinit \
|
||||
--load "$HOME/quicklisp/setup.lisp" \
|
||||
--eval "(mapcar 'asdf:load-asd (directory \"*.asd\"))" \
|
||||
--eval "(handler-case (ql:quickload :data-lens) (error (c) (format t \"~a\" c) (uiop:quit 42)))" \
|
||||
--eval "(handler-case (ql:quickload :data-lens/transducers) (error (c) (format t \"~a\" c) (uiop:quit 43)))" \
|
||||
--eval "(handler-case (ql:quickload :data-lens/test) (error (c) (format t \"~a\" c) (uiop:quit 44)))" \
|
||||
--eval "(handler-case (asdf:test-system :data-lens) (error (c) (format t \"~a\" c) (uiop:quit 45)))" \
|
||||
--eval "(handler-case (asdf:test-system :data-lens/transducers) (error (c) (format t \"~a\" c) (uiop:quit 46)))" \
|
||||
--quit
|
||||
3
Dockerfile
Normal file
3
Dockerfile
Normal file
@ -0,0 +1,3 @@
|
||||
FROM fiddlerwoaroof/sbcl-workspace:arm64-latest
|
||||
COPY . /root/quicklisp/local-projects/data-lens
|
||||
RUN sbcl --eval '(ql:quickload :data-lens/transducers/test)' --quit
|
||||
201
LICENSE
Normal file
201
LICENSE
Normal file
@ -0,0 +1,201 @@
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright 2019 Edward Langley
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
5
Makefile
Normal file
5
Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
test:
|
||||
docker build . --tag data-lens-transducer-test
|
||||
docker run data-lens-transducer-test --eval "(asdf:test-system :data-lens/beta/transducers)" --quit
|
||||
docker image rm --force data-lens-transducer-test:latest
|
||||
|
||||
@ -1,10 +1,68 @@
|
||||
(in-package :asdf-user)
|
||||
|
||||
(asdf:defsystem #:data-lens
|
||||
:description "Utilities for building data transormations from composable functions, modeled on lenses and transducers"
|
||||
:description #.(format nil "~@{~a~^ ~}"
|
||||
"Utilities for building data transformations from"
|
||||
"composable functions, modeled on lenses and"
|
||||
"transducers")
|
||||
:author "Edward Langley <el-cl@elangley.org>"
|
||||
:license "MIT"
|
||||
:license "Apache v2"
|
||||
:depends-on (:cl-ppcre
|
||||
:alexandria
|
||||
#+(or)
|
||||
(:require :sb-cover))
|
||||
:serial t
|
||||
:in-order-to ((test-op (test-op :data-lens/test)))
|
||||
:components ((:file "package")
|
||||
(:file "optics")
|
||||
(:file "lens")))
|
||||
|
||||
(asdf:defsystem #:data-lens/test
|
||||
:description "tests for the transducers"
|
||||
:author "Edward Langley <el-cl@elangley.org>"
|
||||
:license "Apache v2"
|
||||
:depends-on (:data-lens
|
||||
:fiveam
|
||||
:string-case
|
||||
:serapeum)
|
||||
:serial t
|
||||
:perform (test-op (o c)
|
||||
(unless (symbol-call :fiveam '#:run! :data-lens.lens)
|
||||
(error "some tests failed")))
|
||||
:components ((:module "t"
|
||||
:components ((:file "lens")))))
|
||||
|
||||
(asdf:defsystem #:data-lens/transducers
|
||||
:description #.(format nil "~@{~a~^ ~}"
|
||||
"A collection of transducers to reduce stream-manipulation overhead")
|
||||
:author "Edward Langley <el-cl@elangley.org>"
|
||||
:license "Apache v2"
|
||||
:depends-on (:data-lens
|
||||
:alexandria
|
||||
:serapeum)
|
||||
:serial t
|
||||
:components ((:file "lens")))
|
||||
:in-order-to ((test-op (test-op :data-lens/transducers/test)))
|
||||
:components ((:file "package")
|
||||
(:file "transducer-protocol")
|
||||
(:file "transducers")
|
||||
(:file "lazy-sequence")))
|
||||
|
||||
(asdf:defsystem #:data-lens/beta/transducers
|
||||
:description #.(format nil "~@{~a~^ ~}"
|
||||
"A collection of transducers to reduce stream-manipulation overhead")
|
||||
:author "Edward Langley <el-cl@elangley.org>"
|
||||
:license "Apache v2"
|
||||
:depends-on (:data-lens/transducers)
|
||||
:in-order-to ((test-op (test-op :data-lens/transducers))))
|
||||
|
||||
(asdf:defsystem #:data-lens/transducers/test
|
||||
:description "tests for the transducers"
|
||||
:author "Edward Langley <el-cl@elangley.org>"
|
||||
:license "Apache v2"
|
||||
:depends-on (:data-lens/beta/transducers
|
||||
:fiveam)
|
||||
:serial t
|
||||
:perform (test-op (o c) (unless (symbol-call :fiveam '#:run! :data-lens.transducers)
|
||||
(error "some tests failed")))
|
||||
:components ((:module "t"
|
||||
:components ((:file "transducers")))))
|
||||
|
||||
@ -1,96 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Concept index (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Concept index (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Indexes.html#Indexes" rel="up" title="Indexes">
|
||||
<link href="Function-index.html#Function-index" rel="next" title="Function index">
|
||||
<link href="Indexes.html#Indexes" rel="prev" title="Indexes">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Concept-index"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="Function-index.html#Function-index" accesskey="n" rel="next">Function index</a>, Previous: <a href="Indexes.html#Indexes" accesskey="p" rel="prev">Indexes</a>, Up: <a href="Indexes.html#Indexes" accesskey="u" rel="up">Indexes</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Concepts"></a>
|
||||
<h3 class="appendixsec">A.1 Concepts</h3>
|
||||
<table><tr><th valign="top">Jump to: </th><td><a class="summary-letter" href="#Concept-index_cp_letter-D"><b>D</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Concept-index_cp_letter-F"><b>F</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Concept-index_cp_letter-L"><b>L</b></a>
|
||||
|
||||
</td></tr></table>
|
||||
<table class="index-cp" border="0">
|
||||
<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left"> Section</th></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Concept-index_cp_letter-D">D</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="The-data_002dlens_003cdot_003easd-file.html#index-data_002dlens_002easd"><tt>data-lens.asd</tt></a>:</td><td> </td><td valign="top"><a href="The-data_002dlens_003cdot_003easd-file.html#The-data_002dlens_003cdot_003easd-file">The data-lens<dot>asd file</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#index-data_002dlens_002flens_002elisp"><tt>data-lens/lens.lisp</tt></a>:</td><td> </td><td valign="top"><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#The-data_002dlens_002flens_003cdot_003elisp-file">The data-lens/lens<dot>lisp file</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Concept-index_cp_letter-F">F</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="The-data_002dlens_003cdot_003easd-file.html#index-File_002c-Lisp_002c-data_002dlens_002easd">File, Lisp, <tt>data-lens.asd</tt></a>:</td><td> </td><td valign="top"><a href="The-data_002dlens_003cdot_003easd-file.html#The-data_002dlens_003cdot_003easd-file">The data-lens<dot>asd file</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#index-File_002c-Lisp_002c-data_002dlens_002flens_002elisp">File, Lisp, <tt>data-lens/lens.lisp</tt></a>:</td><td> </td><td valign="top"><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#The-data_002dlens_002flens_003cdot_003elisp-file">The data-lens/lens<dot>lisp file</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Concept-index_cp_letter-L">L</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="The-data_002dlens_003cdot_003easd-file.html#index-Lisp-File_002c-data_002dlens_002easd">Lisp File, <tt>data-lens.asd</tt></a>:</td><td> </td><td valign="top"><a href="The-data_002dlens_003cdot_003easd-file.html#The-data_002dlens_003cdot_003easd-file">The data-lens<dot>asd file</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#index-Lisp-File_002c-data_002dlens_002flens_002elisp">Lisp File, <tt>data-lens/lens.lisp</tt></a>:</td><td> </td><td valign="top"><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#The-data_002dlens_002flens_003cdot_003elisp-file">The data-lens/lens<dot>lisp file</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
</table>
|
||||
<table><tr><th valign="top">Jump to: </th><td><a class="summary-letter" href="#Concept-index_cp_letter-D"><b>D</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Concept-index_cp_letter-F"><b>F</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Concept-index_cp_letter-L"><b>L</b></a>
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,109 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Data type index (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Data type index (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Indexes.html#Indexes" rel="up" title="Indexes">
|
||||
<link href="Variable-index.html#Variable-index" rel="prev" title="Variable index">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Data-type-index"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Previous: <a href="Variable-index.html#Variable-index" accesskey="p" rel="prev">Variable index</a>, Up: <a href="Indexes.html#Indexes" accesskey="u" rel="up">Indexes</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Data-types"></a>
|
||||
<h3 class="appendixsec">A.4 Data types</h3>
|
||||
<table><tr><th valign="top">Jump to: </th><td><a class="summary-letter" href="#Data-type-index_tp_letter-C"><b>C</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Data-type-index_tp_letter-D"><b>D</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Data-type-index_tp_letter-I"><b>I</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Data-type-index_tp_letter-P"><b>P</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Data-type-index_tp_letter-S"><b>S</b></a>
|
||||
|
||||
</td></tr></table>
|
||||
<table class="index-tp" border="0">
|
||||
<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left"> Section</th></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Data-type-index_tp_letter-C">C</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-classes.html#index-Class_002c-constant_002d"><code><span class="roman">Class, </span>constant-</code></a>:</td><td> </td><td valign="top"><a href="Internal-classes.html#Internal-classes">Internal classes</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-classes.html#index-Class_002c-identity_002d"><code><span class="roman">Class, </span>identity-</code></a>:</td><td> </td><td valign="top"><a href="Internal-classes.html#Internal-classes">Internal classes</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-classes.html#index-constant_002d"><code>constant-</code></a>:</td><td> </td><td valign="top"><a href="Internal-classes.html#Internal-classes">Internal classes</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Data-type-index_tp_letter-D">D</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="The-data_002dlens-system.html#index-data_002dlens"><code>data-lens</code></a>:</td><td> </td><td valign="top"><a href="The-data_002dlens-system.html#The-data_002dlens-system">The data-lens system</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="The-data_002dlens-package.html#index-data_002dlens-1"><code>data-lens</code></a>:</td><td> </td><td valign="top"><a href="The-data_002dlens-package.html#The-data_002dlens-package">The data-lens package</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="The-data_002dlens_003cdot_003elenses-package.html#index-data_002dlens_002elenses"><code>data-lens.lenses</code></a>:</td><td> </td><td valign="top"><a href="The-data_002dlens_003cdot_003elenses-package.html#The-data_002dlens_003cdot_003elenses-package">The data-lens<dot>lenses package</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Data-type-index_tp_letter-I">I</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-classes.html#index-identity_002d"><code>identity-</code></a>:</td><td> </td><td valign="top"><a href="Internal-classes.html#Internal-classes">Internal classes</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Data-type-index_tp_letter-P">P</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="The-data_002dlens-package.html#index-Package_002c-data_002dlens"><code><span class="roman">Package, </span>data-lens</code></a>:</td><td> </td><td valign="top"><a href="The-data_002dlens-package.html#The-data_002dlens-package">The data-lens package</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="The-data_002dlens_003cdot_003elenses-package.html#index-Package_002c-data_002dlens_002elenses"><code><span class="roman">Package, </span>data-lens.lenses</code></a>:</td><td> </td><td valign="top"><a href="The-data_002dlens_003cdot_003elenses-package.html#The-data_002dlens_003cdot_003elenses-package">The data-lens<dot>lenses package</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Data-type-index_tp_letter-S">S</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="The-data_002dlens-system.html#index-System_002c-data_002dlens"><code><span class="roman">System, </span>data-lens</code></a>:</td><td> </td><td valign="top"><a href="The-data_002dlens-system.html#The-data_002dlens-system">The data-lens system</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
</table>
|
||||
<table><tr><th valign="top">Jump to: </th><td><a class="summary-letter" href="#Data-type-index_tp_letter-C"><b>C</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Data-type-index_tp_letter-D"><b>D</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Data-type-index_tp_letter-I"><b>I</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Data-type-index_tp_letter-P"><b>P</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Data-type-index_tp_letter-S"><b>S</b></a>
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,74 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Definitions (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Definitions (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html#Top" rel="up" title="Top">
|
||||
<link href="Exported-definitions.html#Exported-definitions" rel="next" title="Exported definitions">
|
||||
<link href="The-data_002dlens_003cdot_003elenses-package.html#The-data_002dlens_003cdot_003elenses-package" rel="prev" title="The data-lens<dot>lenses package">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Definitions"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="Indexes.html#Indexes" accesskey="n" rel="next">Indexes</a>, Previous: <a href="Packages.html#Packages" accesskey="p" rel="prev">Packages</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Definitions-1"></a>
|
||||
<h2 class="chapter">4 Definitions</h2>
|
||||
<p>Definitions are sorted by export status, category, package, and then by
|
||||
lexicographic order.
|
||||
</p>
|
||||
<table class="menu" border="0" cellspacing="0">
|
||||
<tr><td align="left" valign="top">• <a href="Exported-definitions.html#Exported-definitions" accesskey="1">Exported definitions</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
<tr><td align="left" valign="top">• <a href="Internal-definitions.html#Internal-definitions" accesskey="2">Internal definitions</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,72 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Exported definitions (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Exported definitions (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Definitions.html#Definitions" rel="up" title="Definitions">
|
||||
<link href="Exported-macros.html#Exported-macros" rel="next" title="Exported macros">
|
||||
<link href="Definitions.html#Definitions" rel="prev" title="Definitions">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Exported-definitions"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="Internal-definitions.html#Internal-definitions" accesskey="n" rel="next">Internal definitions</a>, Previous: <a href="Definitions.html#Definitions" accesskey="p" rel="prev">Definitions</a>, Up: <a href="Definitions.html#Definitions" accesskey="u" rel="up">Definitions</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Exported-definitions-1"></a>
|
||||
<h3 class="section">4.1 Exported definitions</h3>
|
||||
<table class="menu" border="0" cellspacing="0">
|
||||
<tr><td align="left" valign="top">• <a href="Exported-macros.html#Exported-macros" accesskey="1">Exported macros</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
<tr><td align="left" valign="top">• <a href="Exported-functions.html#Exported-functions" accesskey="2">Exported functions</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
<tr><td align="left" valign="top">• <a href="Exported-generic-functions.html#Exported-generic-functions" accesskey="3">Exported generic functions</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,499 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Exported functions (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Exported functions (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Exported-definitions.html#Exported-definitions" rel="up" title="Exported definitions">
|
||||
<link href="Exported-generic-functions.html#Exported-generic-functions" rel="next" title="Exported generic functions">
|
||||
<link href="Exported-macros.html#Exported-macros" rel="prev" title="Exported macros">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Exported-functions"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="Exported-generic-functions.html#Exported-generic-functions" accesskey="n" rel="next">Exported generic functions</a>, Previous: <a href="Exported-macros.html#Exported-macros" accesskey="p" rel="prev">Exported macros</a>, Up: <a href="Exported-definitions.html#Exported-definitions" accesskey="u" rel="up">Exported definitions</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Functions"></a>
|
||||
<h4 class="subsection">4.1.2 Functions</h4>
|
||||
<dl>
|
||||
<dt><a name="index-applicable_002dwhen"></a>Function: <strong>applicable-when</strong> <em>FUN TEST</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eAPPLICABLE_002dWHEN-function"></a><a name="index-Function_002c-applicable_002dwhen"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-combine_002dmatching_002dlists"></a>Function: <strong>combine-matching-lists</strong> <em>&key TEST &allow-other-keys</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCOMBINE_002dMATCHING_002dLISTS-function"></a><a name="index-Function_002c-combine_002dmatching_002dlists"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-compress_002druns"></a>Function: <strong>compress-runs</strong> <em>&key COLLECTOR TEST KEY</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCOMPRESS_002dRUNS-function"></a><a name="index-Function_002c-compress_002druns"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-cumsum"></a>Function: <strong>cumsum</strong> <em>&key ADD-FUN KEY COMBINE ZERO</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCUMSUM-function"></a><a name="index-Function_002c-cumsum"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-denest"></a>Function: <strong>denest</strong> <em>&key RESULT-TYPE</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDENEST-function"></a><a name="index-Function_002c-denest"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-derive"></a>Function: <strong>derive</strong> <em>DIFF-FUN &key KEY</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDERIVE-function"></a><a name="index-Function_002c-derive"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-element"></a>Function: <strong>element</strong> <em>NUM</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eELEMENT-function"></a><a name="index-Function_002c-element"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-exclude"></a>Function: <strong>exclude</strong> <em>PRED</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXCLUDE-function"></a><a name="index-Function_002c-exclude"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-include"></a>Function: <strong>include</strong> <em>PRED</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eINCLUDE-function"></a><a name="index-Function_002c-include"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-juxt"></a>Function: <strong>juxt</strong> <em>FUN1 &rest R</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eJUXT-function"></a><a name="index-Function_002c-juxt"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-key"></a>Function: <strong>key</strong> <em>KEY</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eKEY-function"></a><a name="index-Function_002c-key"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-key_002dtransform"></a>Function: <strong>key-transform</strong> <em>FUN KEY-GET KEY-SET</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eKEY_002dTRANSFORM-function"></a><a name="index-Function_002c-key_002dtransform"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-make_002dalist_002dlens"></a>Function: <strong>make-alist-lens</strong> <em>KEY</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dALIST_002dLENS-function"></a><a name="index-Function_002c-make_002dalist_002dlens"></a>
|
||||
<p>A lens for updating a alist, discarding previous values
|
||||
</p><dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_003cdot_003elenses-package.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES-package"><tt>data-lens.lenses</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-make_002dhash_002dtable_002dlens"></a>Function: <strong>make-hash-table-lens</strong> <em>KEY</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dHASH_002dTABLE_002dLENS-function"></a><a name="index-Function_002c-make_002dhash_002dtable_002dlens"></a>
|
||||
<p>A lens for updating a hash-table, discarding previous values
|
||||
</p><dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_003cdot_003elenses-package.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES-package"><tt>data-lens.lenses</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-make_002dplist_002dlens"></a>Function: <strong>make-plist-lens</strong> <em>KEY</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dPLIST_002dLENS-function"></a><a name="index-Function_002c-make_002dplist_002dlens"></a>
|
||||
<p>A lens for updating a plist, preserving previous values
|
||||
</p><dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_003cdot_003elenses-package.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES-package"><tt>data-lens.lenses</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-maximizing"></a>Function: <strong>maximizing</strong> <em>RELATION MEASURE</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eMAXIMIZING-function"></a><a name="index-Function_002c-maximizing"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-of_002dlength"></a>Function: <strong>of-length</strong> <em>LEN</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOF_002dLENGTH-function"></a><a name="index-Function_002c-of_002dlength"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-of_002dmax_002dlength"></a>Function: <strong>of-max-length</strong> <em>LEN</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOF_002dMAX_002dLENGTH-function"></a><a name="index-Function_002c-of_002dmax_002dlength"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-of_002dmin_002dlength"></a>Function: <strong>of-min-length</strong> <em>LEN</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOF_002dMIN_002dLENGTH-function"></a><a name="index-Function_002c-of_002dmin_002dlength"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-on"></a>Function: <strong>on</strong> <em>FUN KEY</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eON-function"></a><a name="index-Function_002c-on"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-over"></a>Function: <strong>over</strong> <em>FUN &key RESULT-TYPE</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOVER-function"></a><a name="index-Function_002c-over"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-over-1"></a>Function: <strong>over</strong> <em>LENS CB REC</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eOVER-function"></a><a name="index-Function_002c-over-1"></a>
|
||||
<p>Given a lens, a callback and a record, apply the lens to the<br>
|
||||
record, transform it by the callback and return copy of the record,<br>
|
||||
updated to contain the result of the callback. This is the fundamental
|
||||
operation on a lens and SET and VIEW are implemented in terms of it.<br>
|
||||
</p>
|
||||
<p>A lens is any function of the form (lambda (fun) (lambda (rec) ...))<br>
|
||||
that obeys the lens laws (where == is some reasonable equality<br>
|
||||
operator):<br>
|
||||
</p>
|
||||
<p>(== (view lens (set lens value rec))<br>
|
||||
value)<br>
|
||||
<br>
|
||||
(== (set lens (view lens rec) rec)<br>
|
||||
rec)<br>
|
||||
<br>
|
||||
(== (set lens value2 (set lens value1 rec))<br>
|
||||
(set lens value2 rec))<br>
|
||||
</p>
|
||||
<p>The inner lambda returns a functor that determines the policy to be<br>
|
||||
applied to the focused part. By default, this only uses IDENTITY- and
|
||||
CONSTANT- in order to implement the lens operations over, set and<br>
|
||||
view.<br>
|
||||
</p>
|
||||
<p>If these conditions are met, (over (data-lens:<>1 lens1 lens2) ...) is
|
||||
equivalent to using lens2 to focus the part lens1 focuses: note that
|
||||
composition is "backwards" from what one might expect: this is<br>
|
||||
because composition composes the wrapper lambdas and applies the<br>
|
||||
lambda that actually pulls a value out of a record later.
|
||||
</p><dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_003cdot_003elenses-package.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES-package"><tt>data-lens.lenses</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-pick"></a>Function: <strong>pick</strong> <em>SELECTOR</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003ePICK-function"></a><a name="index-Function_002c-pick"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-regex_002dmatch"></a>Function: <strong>regex-match</strong> <em>REGEX</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eREGEX_002dMATCH-function"></a><a name="index-Function_002c-regex_002dmatch"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-set"></a>Function: <strong>set</strong> <em>LENS V REC</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eSET-function"></a><a name="index-Function_002c-set"></a>
|
||||
<p>Given a lens, a value and a rec, immutably update the rec to<br>
|
||||
contain the new value at the location focused by the lens.
|
||||
</p><dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_003cdot_003elenses-package.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES-package"><tt>data-lens.lenses</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-slice"></a>Function: <strong>slice</strong> <em>START &optional END</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSLICE-function"></a><a name="index-Function_002c-slice"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-sorted"></a>Function: <strong>sorted</strong> <em>COMPARATOR &rest R &key KEY</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSORTED-function"></a><a name="index-Function_002c-sorted"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-splice_002delt"></a>Function: <strong>splice-elt</strong> <em>ELT FUN</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSPLICE_002dELT-function"></a><a name="index-Function_002c-splice_002delt"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-transform_002delt"></a>Function: <strong>transform-elt</strong> <em>ELT FUN</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eTRANSFORM_002dELT-function"></a><a name="index-Function_002c-transform_002delt"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-transform_002dhead"></a>Function: <strong>transform-head</strong> <em>FUN</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eTRANSFORM_002dHEAD-function"></a><a name="index-Function_002c-transform_002dhead"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-transform_002dtail"></a>Function: <strong>transform-tail</strong> <em>FUN</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eTRANSFORM_002dTAIL-function"></a><a name="index-Function_002c-transform_002dtail"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-view"></a>Function: <strong>view</strong> <em>LENS REC</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eVIEW-function"></a><a name="index-Function_002c-view"></a>
|
||||
<p>Given a lens and a rec, return the focused value
|
||||
</p><dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_003cdot_003elenses-package.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES-package"><tt>data-lens.lenses</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-zipping"></a>Function: <strong>zipping</strong> <em>RESULT-TYPE &key FILL-VALUE</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eZIPPING-function"></a><a name="index-Function_002c-zipping"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
|
||||
<hr>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="Exported-generic-functions.html#Exported-generic-functions" accesskey="n" rel="next">Exported generic functions</a>, Previous: <a href="Exported-macros.html#Exported-macros" accesskey="p" rel="prev">Exported macros</a>, Up: <a href="Exported-definitions.html#Exported-definitions" accesskey="u" rel="up">Exported definitions</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,87 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Exported generic functions (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Exported generic functions (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Exported-definitions.html#Exported-definitions" rel="up" title="Exported definitions">
|
||||
<link href="Internal-definitions.html#Internal-definitions" rel="next" title="Internal definitions">
|
||||
<link href="Exported-functions.html#Exported-functions" rel="prev" title="Exported functions">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Exported-generic-functions"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Previous: <a href="Exported-functions.html#Exported-functions" accesskey="p" rel="prev">Exported functions</a>, Up: <a href="Exported-definitions.html#Exported-definitions" accesskey="u" rel="up">Exported definitions</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Generic-functions"></a>
|
||||
<h4 class="subsection">4.1.3 Generic functions</h4>
|
||||
<dl>
|
||||
<dt><a name="index-extract_002dkey"></a>Generic Function: <strong>extract-key</strong> <em>MAP KEY</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXTRACT_002dKEY-generic-function"></a><a name="index-Generic-Function_002c-extract_002dkey"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
<dt><strong>Methods</strong></dt>
|
||||
<dd><dl>
|
||||
<dt><a name="index-extract_002dkey-1"></a>Method: <strong>extract-key</strong> <em>(MAP <tt>hash-table</tt>) KEY</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXTRACT_002dKEY-COMMON_002dLISP_003ccolon_003e_003ccolon_003eHASH_002dTABLE-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-method"></a><a name="index-Method_002c-extract_002dkey"></a>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-extract_002dkey-2"></a>Method: <strong>extract-key</strong> <em>(MAP <tt>list</tt>) KEY</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXTRACT_002dKEY-COMMON_002dLISP_003ccolon_003e_003ccolon_003eLIST-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-method"></a><a name="index-Method_002c-extract_002dkey-1"></a>
|
||||
</dd></dl>
|
||||
</dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,124 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Exported macros (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Exported macros (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Exported-definitions.html#Exported-definitions" rel="up" title="Exported definitions">
|
||||
<link href="Exported-functions.html#Exported-functions" rel="next" title="Exported functions">
|
||||
<link href="Exported-definitions.html#Exported-definitions" rel="prev" title="Exported definitions">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Exported-macros"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="Exported-functions.html#Exported-functions" accesskey="n" rel="next">Exported functions</a>, Previous: <a href="Exported-definitions.html#Exported-definitions" accesskey="p" rel="prev">Exported definitions</a>, Up: <a href="Exported-definitions.html#Exported-definitions" accesskey="u" rel="up">Exported definitions</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Macros"></a>
|
||||
<h4 class="subsection">4.1.1 Macros</h4>
|
||||
<dl>
|
||||
<dt><a name="index-_003c_003e1"></a>Macro: <strong><>1</strong> <em>&rest FUNS</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003e_003c_003e1-macro"></a><a name="index-Macro_002c-_003c_003e1"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-applying"></a>Macro: <strong>applying</strong> <em>FUN &rest ARGS</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eAPPLYING-macro"></a><a name="index-Macro_002c-applying"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-defun_002dct"></a>Macro: <strong>defun-ct</strong> <em>NAME (&rest ARGS) &body BODY</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDEFUN_002dCT-macro"></a><a name="index-Macro_002c-defun_002dct"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-let_002dfn"></a>Macro: <strong>let-fn</strong> <em>(&rest BINDINGS) &body BODY</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eLET_002dFN-macro"></a><a name="index-Macro_002c-let_002dfn"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-shortcut"></a>Macro: <strong>shortcut</strong> <em>NAME FUNCTION &body BOUND-ARGS</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSHORTCUT-macro"></a><a name="index-Macro_002c-shortcut"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,72 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Files (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Files (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html#Top" rel="up" title="Top">
|
||||
<link href="Lisp-files.html#Lisp-files" rel="next" title="Lisp files">
|
||||
<link href="The-data_002dlens-system.html#The-data_002dlens-system" rel="prev" title="The data-lens system">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Files"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="Packages.html#Packages" accesskey="n" rel="next">Packages</a>, Previous: <a href="Systems.html#Systems" accesskey="p" rel="prev">Systems</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Files-1"></a>
|
||||
<h2 class="chapter">2 Files</h2>
|
||||
<p>Files are sorted by type and then listed depth-first from the systems
|
||||
components trees.
|
||||
</p>
|
||||
<table class="menu" border="0" cellspacing="0">
|
||||
<tr><td align="left" valign="top">• <a href="Lisp-files.html#Lisp-files" accesskey="1">Lisp files</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,335 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Function index (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Function index (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Indexes.html#Indexes" rel="up" title="Indexes">
|
||||
<link href="Variable-index.html#Variable-index" rel="next" title="Variable index">
|
||||
<link href="Concept-index.html#Concept-index" rel="prev" title="Concept index">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Function-index"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="Variable-index.html#Variable-index" accesskey="n" rel="next">Variable index</a>, Previous: <a href="Concept-index.html#Concept-index" accesskey="p" rel="prev">Concept index</a>, Up: <a href="Indexes.html#Indexes" accesskey="u" rel="up">Indexes</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Functions-2"></a>
|
||||
<h3 class="appendixsec">A.2 Functions</h3>
|
||||
<table><tr><th valign="top">Jump to: </th><td><a class="summary-letter" href="#Function-index_fn_symbol-1"><b><</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_symbol-2"><b>=</b></a>
|
||||
|
||||
<br>
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-A"><b>A</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-C"><b>C</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-D"><b>D</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-E"><b>E</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-F"><b>F</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-G"><b>G</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-I"><b>I</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-J"><b>J</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-K"><b>K</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-L"><b>L</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-M"><b>M</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-O"><b>O</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-P"><b>P</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-R"><b>R</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-S"><b>S</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-T"><b>T</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-U"><b>U</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-V"><b>V</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-W"><b>W</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-Z"><b>Z</b></a>
|
||||
|
||||
</td></tr></table>
|
||||
<table class="index-fn" border="0">
|
||||
<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left"> Section</th></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_symbol-1"><</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-macros.html#index-_003c_003e1"><code><>1</code></a>:</td><td> </td><td valign="top"><a href="Exported-macros.html#Exported-macros">Exported macros</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_symbol-2">=</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-functions.html#index-_003d_003e_003e"><code>=>></code></a>:</td><td> </td><td valign="top"><a href="Internal-functions.html#Internal-functions">Internal functions</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-A">A</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-applicable_002dwhen"><code>applicable-when</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-macros.html#index-applying"><code>applying</code></a>:</td><td> </td><td valign="top"><a href="Exported-macros.html#Exported-macros">Exported macros</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-C">C</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-clone"><code>clone</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-clone-1"><code>clone</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-combine_002dmatching_002dlists"><code>combine-matching-lists</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-compress_002druns"><code>compress-runs</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-functions.html#index-cons_002dnew"><code>cons-new</code></a>:</td><td> </td><td valign="top"><a href="Internal-functions.html#Internal-functions">Internal functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-cumsum"><code>cumsum</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-D">D</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-functions.html#index-deduplicate"><code>deduplicate</code></a>:</td><td> </td><td valign="top"><a href="Internal-functions.html#Internal-functions">Internal functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-macros.html#index-defun_002dct"><code>defun-ct</code></a>:</td><td> </td><td valign="top"><a href="Exported-macros.html#Exported-macros">Exported macros</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-denest"><code>denest</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-derive"><code>derive</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-E">E</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-element"><code>element</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-exclude"><code>exclude</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-generic-functions.html#index-extract_002dkey"><code>extract-key</code></a>:</td><td> </td><td valign="top"><a href="Exported-generic-functions.html#Exported-generic-functions">Exported generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-generic-functions.html#index-extract_002dkey-1"><code>extract-key</code></a>:</td><td> </td><td valign="top"><a href="Exported-generic-functions.html#Exported-generic-functions">Exported generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-generic-functions.html#index-extract_002dkey-2"><code>extract-key</code></a>:</td><td> </td><td valign="top"><a href="Exported-generic-functions.html#Exported-generic-functions">Exported generic functions</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-F">F</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-functions.html#index-filler"><code>filler</code></a>:</td><td> </td><td valign="top"><a href="Internal-functions.html#Internal-functions">Internal functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-fmap"><code>fmap</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-fmap-1"><code>fmap</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-fmap-2"><code>fmap</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-fmap-3"><code>fmap</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-fmap-4"><code>fmap</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-functions.html#index-Function_002c-_003d_003e_003e"><code><span class="roman">Function, </span>=>></code></a>:</td><td> </td><td valign="top"><a href="Internal-functions.html#Internal-functions">Internal functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-applicable_002dwhen"><code><span class="roman">Function, </span>applicable-when</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-combine_002dmatching_002dlists"><code><span class="roman">Function, </span>combine-matching-lists</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-compress_002druns"><code><span class="roman">Function, </span>compress-runs</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-functions.html#index-Function_002c-cons_002dnew"><code><span class="roman">Function, </span>cons-new</code></a>:</td><td> </td><td valign="top"><a href="Internal-functions.html#Internal-functions">Internal functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-cumsum"><code><span class="roman">Function, </span>cumsum</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-functions.html#index-Function_002c-deduplicate"><code><span class="roman">Function, </span>deduplicate</code></a>:</td><td> </td><td valign="top"><a href="Internal-functions.html#Internal-functions">Internal functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-denest"><code><span class="roman">Function, </span>denest</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-derive"><code><span class="roman">Function, </span>derive</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-element"><code><span class="roman">Function, </span>element</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-exclude"><code><span class="roman">Function, </span>exclude</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-functions.html#index-Function_002c-filler"><code><span class="roman">Function, </span>filler</code></a>:</td><td> </td><td valign="top"><a href="Internal-functions.html#Internal-functions">Internal functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-include"><code><span class="roman">Function, </span>include</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-juxt"><code><span class="roman">Function, </span>juxt</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-key"><code><span class="roman">Function, </span>key</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-key_002dtransform"><code><span class="roman">Function, </span>key-transform</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-functions.html#index-Function_002c-make_002dalist_002dhistory_002dlens"><code><span class="roman">Function, </span>make-alist-history-lens</code></a>:</td><td> </td><td valign="top"><a href="Internal-functions.html#Internal-functions">Internal functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-make_002dalist_002dlens"><code><span class="roman">Function, </span>make-alist-lens</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-make_002dhash_002dtable_002dlens"><code><span class="roman">Function, </span>make-hash-table-lens</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-make_002dplist_002dlens"><code><span class="roman">Function, </span>make-plist-lens</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-functions.html#index-Function_002c-matching_002dlist_002dreducer"><code><span class="roman">Function, </span>matching-list-reducer</code></a>:</td><td> </td><td valign="top"><a href="Internal-functions.html#Internal-functions">Internal functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-maximizing"><code><span class="roman">Function, </span>maximizing</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-of_002dlength"><code><span class="roman">Function, </span>of-length</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-of_002dmax_002dlength"><code><span class="roman">Function, </span>of-max-length</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-of_002dmin_002dlength"><code><span class="roman">Function, </span>of-min-length</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-on"><code><span class="roman">Function, </span>on</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-over"><code><span class="roman">Function, </span>over</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-over-1"><code><span class="roman">Function, </span>over</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-pick"><code><span class="roman">Function, </span>pick</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-regex_002dmatch"><code><span class="roman">Function, </span>regex-match</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-set"><code><span class="roman">Function, </span>set</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-slice"><code><span class="roman">Function, </span>slice</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-sorted"><code><span class="roman">Function, </span>sorted</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-splice_002delt"><code><span class="roman">Function, </span>splice-elt</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-transform_002delt"><code><span class="roman">Function, </span>transform-elt</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-transform_002dhead"><code><span class="roman">Function, </span>transform-head</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-transform_002dtail"><code><span class="roman">Function, </span>transform-tail</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-functions.html#index-Function_002c-update"><code><span class="roman">Function, </span>update</code></a>:</td><td> </td><td valign="top"><a href="Internal-functions.html#Internal-functions">Internal functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-view"><code><span class="roman">Function, </span>view</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-functions.html#index-Function_002c-wrap_002dconstant"><code><span class="roman">Function, </span>wrap-constant</code></a>:</td><td> </td><td valign="top"><a href="Internal-functions.html#Internal-functions">Internal functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-functions.html#index-Function_002c-wrap_002didentity"><code><span class="roman">Function, </span>wrap-identity</code></a>:</td><td> </td><td valign="top"><a href="Internal-functions.html#Internal-functions">Internal functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-Function_002c-zipping"><code><span class="roman">Function, </span>zipping</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-G">G</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-Generic-Function_002c-clone"><code><span class="roman">Generic Function, </span>clone</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-generic-functions.html#index-Generic-Function_002c-extract_002dkey"><code><span class="roman">Generic Function, </span>extract-key</code></a>:</td><td> </td><td valign="top"><a href="Exported-generic-functions.html#Exported-generic-functions">Exported generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-Generic-Function_002c-fmap"><code><span class="roman">Generic Function, </span>fmap</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-Generic-Function_002c-unconstant"><code><span class="roman">Generic Function, </span>unconstant</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-Generic-Function_002c-unidentity"><code><span class="roman">Generic Function, </span>unidentity</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-I">I</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-include"><code>include</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-J">J</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-juxt"><code>juxt</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-K">K</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-key"><code>key</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-key_002dtransform"><code>key-transform</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-L">L</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-macros.html#index-let_002dfn"><code>let-fn</code></a>:</td><td> </td><td valign="top"><a href="Exported-macros.html#Exported-macros">Exported macros</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-M">M</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-macros.html#index-Macro_002c-_003c_003e1"><code><span class="roman">Macro, </span><>1</code></a>:</td><td> </td><td valign="top"><a href="Exported-macros.html#Exported-macros">Exported macros</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-macros.html#index-Macro_002c-applying"><code><span class="roman">Macro, </span>applying</code></a>:</td><td> </td><td valign="top"><a href="Exported-macros.html#Exported-macros">Exported macros</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-macros.html#index-Macro_002c-defun_002dct"><code><span class="roman">Macro, </span>defun-ct</code></a>:</td><td> </td><td valign="top"><a href="Exported-macros.html#Exported-macros">Exported macros</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-macros.html#index-Macro_002c-let_002dfn"><code><span class="roman">Macro, </span>let-fn</code></a>:</td><td> </td><td valign="top"><a href="Exported-macros.html#Exported-macros">Exported macros</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-macros.html#index-Macro_002c-shortcut"><code><span class="roman">Macro, </span>shortcut</code></a>:</td><td> </td><td valign="top"><a href="Exported-macros.html#Exported-macros">Exported macros</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-macros.html#index-Macro_002c-updatef"><code><span class="roman">Macro, </span>updatef</code></a>:</td><td> </td><td valign="top"><a href="Internal-macros.html#Internal-macros">Internal macros</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-functions.html#index-make_002dalist_002dhistory_002dlens"><code>make-alist-history-lens</code></a>:</td><td> </td><td valign="top"><a href="Internal-functions.html#Internal-functions">Internal functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-make_002dalist_002dlens"><code>make-alist-lens</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-make_002dhash_002dtable_002dlens"><code>make-hash-table-lens</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-make_002dplist_002dlens"><code>make-plist-lens</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-functions.html#index-matching_002dlist_002dreducer"><code>matching-list-reducer</code></a>:</td><td> </td><td valign="top"><a href="Internal-functions.html#Internal-functions">Internal functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-maximizing"><code>maximizing</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-Method_002c-clone"><code><span class="roman">Method, </span>clone</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-generic-functions.html#index-Method_002c-extract_002dkey"><code><span class="roman">Method, </span>extract-key</code></a>:</td><td> </td><td valign="top"><a href="Exported-generic-functions.html#Exported-generic-functions">Exported generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-generic-functions.html#index-Method_002c-extract_002dkey-1"><code><span class="roman">Method, </span>extract-key</code></a>:</td><td> </td><td valign="top"><a href="Exported-generic-functions.html#Exported-generic-functions">Exported generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-Method_002c-fmap"><code><span class="roman">Method, </span>fmap</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-Method_002c-fmap-1"><code><span class="roman">Method, </span>fmap</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-Method_002c-fmap-2"><code><span class="roman">Method, </span>fmap</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-Method_002c-fmap-3"><code><span class="roman">Method, </span>fmap</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-Method_002c-unconstant"><code><span class="roman">Method, </span>unconstant</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-Method_002c-unidentity"><code><span class="roman">Method, </span>unidentity</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-O">O</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-of_002dlength"><code>of-length</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-of_002dmax_002dlength"><code>of-max-length</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-of_002dmin_002dlength"><code>of-min-length</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-on"><code>on</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-over"><code>over</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-over-1"><code>over</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-P">P</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-pick"><code>pick</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-R">R</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-regex_002dmatch"><code>regex-match</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-S">S</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-set"><code>set</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-macros.html#index-shortcut"><code>shortcut</code></a>:</td><td> </td><td valign="top"><a href="Exported-macros.html#Exported-macros">Exported macros</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-slice"><code>slice</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-sorted"><code>sorted</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-splice_002delt"><code>splice-elt</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-T">T</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-transform_002delt"><code>transform-elt</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-transform_002dhead"><code>transform-head</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-transform_002dtail"><code>transform-tail</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-U">U</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-unconstant"><code>unconstant</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-unconstant-1"><code>unconstant</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-unidentity"><code>unidentity</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-generic-functions.html#index-unidentity-1"><code>unidentity</code></a>:</td><td> </td><td valign="top"><a href="Internal-generic-functions.html#Internal-generic-functions">Internal generic functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-functions.html#index-update"><code>update</code></a>:</td><td> </td><td valign="top"><a href="Internal-functions.html#Internal-functions">Internal functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-macros.html#index-updatef"><code>updatef</code></a>:</td><td> </td><td valign="top"><a href="Internal-macros.html#Internal-macros">Internal macros</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-V">V</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-view"><code>view</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-W">W</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-functions.html#index-wrap_002dconstant"><code>wrap-constant</code></a>:</td><td> </td><td valign="top"><a href="Internal-functions.html#Internal-functions">Internal functions</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-functions.html#index-wrap_002didentity"><code>wrap-identity</code></a>:</td><td> </td><td valign="top"><a href="Internal-functions.html#Internal-functions">Internal functions</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Function-index_fn_letter-Z">Z</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Exported-functions.html#index-zipping"><code>zipping</code></a>:</td><td> </td><td valign="top"><a href="Exported-functions.html#Exported-functions">Exported functions</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
</table>
|
||||
<table><tr><th valign="top">Jump to: </th><td><a class="summary-letter" href="#Function-index_fn_symbol-1"><b><</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_symbol-2"><b>=</b></a>
|
||||
|
||||
<br>
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-A"><b>A</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-C"><b>C</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-D"><b>D</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-E"><b>E</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-F"><b>F</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-G"><b>G</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-I"><b>I</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-J"><b>J</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-K"><b>K</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-L"><b>L</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-M"><b>M</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-O"><b>O</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-P"><b>P</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-R"><b>R</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-S"><b>S</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-T"><b>T</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-U"><b>U</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-V"><b>V</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-W"><b>W</b></a>
|
||||
|
||||
<a class="summary-letter" href="#Function-index_fn_letter-Z"><b>Z</b></a>
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="Variable-index.html#Variable-index" accesskey="n" rel="next">Variable index</a>, Previous: <a href="Concept-index.html#Concept-index" accesskey="p" rel="prev">Concept index</a>, Up: <a href="Indexes.html#Indexes" accesskey="u" rel="up">Indexes</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,75 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Indexes (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Indexes (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html#Top" rel="up" title="Top">
|
||||
<link href="Concept-index.html#Concept-index" rel="next" title="Concept index">
|
||||
<link href="Internal-classes.html#Internal-classes" rel="prev" title="Internal classes">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Indexes"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Previous: <a href="Definitions.html#Definitions" accesskey="p" rel="prev">Definitions</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Indexes-1"></a>
|
||||
<h2 class="appendix">Appendix A Indexes</h2>
|
||||
<table class="menu" border="0" cellspacing="0">
|
||||
<tr><td align="left" valign="top">• <a href="Concept-index.html#Concept-index" accesskey="1">Concept index</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
<tr><td align="left" valign="top">• <a href="Function-index.html#Function-index" accesskey="2">Function index</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
<tr><td align="left" valign="top">• <a href="Variable-index.html#Variable-index" accesskey="3">Variable index</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
<tr><td align="left" valign="top">• <a href="Data-type-index.html#Data-type-index" accesskey="4">Data type index</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,138 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Internal classes (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Internal classes (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Internal-definitions.html#Internal-definitions" rel="up" title="Internal definitions">
|
||||
<link href="Indexes.html#Indexes" rel="next" title="Indexes">
|
||||
<link href="Internal-generic-functions.html#Internal-generic-functions" rel="prev" title="Internal generic functions">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Internal-classes"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Previous: <a href="Internal-generic-functions.html#Internal-generic-functions" accesskey="p" rel="prev">Internal generic functions</a>, Up: <a href="Internal-definitions.html#Internal-definitions" accesskey="u" rel="up">Internal definitions</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Classes"></a>
|
||||
<h4 class="subsection">4.2.4 Classes</h4>
|
||||
<dl>
|
||||
<dt><a name="index-constant_002d"></a>Class: <strong>constant-</strong> <em>()</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCONSTANT_002d-class"></a><a name="index-Class_002c-constant_002d"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_003cdot_003elenses-package.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES-package"><tt>data-lens.lenses</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
<dt><strong>Direct superclasses</strong></dt>
|
||||
<dd><p><tt>standard-object</tt> (class)
|
||||
</p></dd>
|
||||
<dt><strong>Direct methods</strong></dt>
|
||||
<dd><ul>
|
||||
<li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCONSTANT_002d-method"><tt>fmap</tt></a> (method)
|
||||
</li><li> <tt>print-object</tt> (method)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNCONSTANT-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCONSTANT_002d-method"><tt>unconstant</tt></a> (method)
|
||||
</li></ul>
|
||||
</dd>
|
||||
<dt><strong>Direct slots</strong></dt>
|
||||
<dd><dl>
|
||||
<dt><a name="index-_0025v"></a>Slot: <strong>%v</strong></dt>
|
||||
<dd><a name="index-Slot_002c-_0025v"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Initargs</strong></dt>
|
||||
<dd><p><tt>:value</tt>
|
||||
</p></dd>
|
||||
<dt><strong>Readers</strong></dt>
|
||||
<dd><p><a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNCONSTANT-generic-function"><tt>unconstant</tt></a> (generic function)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
</dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-identity_002d"></a>Class: <strong>identity-</strong> <em>()</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eIDENTITY_002d-class"></a><a name="index-Class_002c-identity_002d"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_003cdot_003elenses-package.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES-package"><tt>data-lens.lenses</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
<dt><strong>Direct superclasses</strong></dt>
|
||||
<dd><p><tt>standard-object</tt> (class)
|
||||
</p></dd>
|
||||
<dt><strong>Direct methods</strong></dt>
|
||||
<dd><ul>
|
||||
<li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eIDENTITY_002d-method"><tt>fmap</tt></a> (method)
|
||||
</li><li> <tt>print-object</tt> (method)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNIDENTITY-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eIDENTITY_002d-method"><tt>unidentity</tt></a> (method)
|
||||
</li></ul>
|
||||
</dd>
|
||||
<dt><strong>Direct slots</strong></dt>
|
||||
<dd><dl>
|
||||
<dt><a name="index-_0025v-1"></a>Slot: <strong>%v</strong></dt>
|
||||
<dd><a name="index-Slot_002c-_0025v-1"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Initargs</strong></dt>
|
||||
<dd><p><tt>:value</tt>
|
||||
</p></dd>
|
||||
<dt><strong>Readers</strong></dt>
|
||||
<dd><p><a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNIDENTITY-generic-function"><tt>unidentity</tt></a> (generic function)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
</dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,74 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Internal definitions (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Internal definitions (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Definitions.html#Definitions" rel="up" title="Definitions">
|
||||
<link href="Internal-macros.html#Internal-macros" rel="next" title="Internal macros">
|
||||
<link href="Exported-generic-functions.html#Exported-generic-functions" rel="prev" title="Exported generic functions">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Internal-definitions"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Previous: <a href="Exported-definitions.html#Exported-definitions" accesskey="p" rel="prev">Exported definitions</a>, Up: <a href="Definitions.html#Definitions" accesskey="u" rel="up">Definitions</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Internal-definitions-1"></a>
|
||||
<h3 class="section">4.2 Internal definitions</h3>
|
||||
<table class="menu" border="0" cellspacing="0">
|
||||
<tr><td align="left" valign="top">• <a href="Internal-macros.html#Internal-macros" accesskey="1">Internal macros</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
<tr><td align="left" valign="top">• <a href="Internal-functions.html#Internal-functions" accesskey="2">Internal functions</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
<tr><td align="left" valign="top">• <a href="Internal-generic-functions.html#Internal-generic-functions" accesskey="3">Internal generic functions</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
<tr><td align="left" valign="top">• <a href="Internal-classes.html#Internal-classes" accesskey="4">Internal classes</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,173 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Internal functions (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Internal functions (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Internal-definitions.html#Internal-definitions" rel="up" title="Internal definitions">
|
||||
<link href="Internal-generic-functions.html#Internal-generic-functions" rel="next" title="Internal generic functions">
|
||||
<link href="Internal-macros.html#Internal-macros" rel="prev" title="Internal macros">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Internal-functions"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="Internal-generic-functions.html#Internal-generic-functions" accesskey="n" rel="next">Internal generic functions</a>, Previous: <a href="Internal-macros.html#Internal-macros" accesskey="p" rel="prev">Internal macros</a>, Up: <a href="Internal-definitions.html#Internal-definitions" accesskey="u" rel="up">Internal definitions</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Functions-1"></a>
|
||||
<h4 class="subsection">4.2.2 Functions</h4>
|
||||
<dl>
|
||||
<dt><a name="index-_003d_003e_003e"></a>Function: <strong>=>></strong> <em>FUN1 FUN2</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003e_003d_003e_003e-function"></a><a name="index-Function_002c-_003d_003e_003e"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-cons_002dnew"></a>Function: <strong>cons-new</strong> <em>&key TEST KEY</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCONS_002dNEW-function"></a><a name="index-Function_002c-cons_002dnew"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-deduplicate"></a>Function: <strong>deduplicate</strong> <em>&optional TEST</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDEDUPLICATE-function"></a><a name="index-Function_002c-deduplicate"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-filler"></a>Function: <strong>filler</strong> <em>LENGTH1 LENGTH2 FILL-VALUE</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eFILLER-function"></a><a name="index-Function_002c-filler"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-make_002dalist_002dhistory_002dlens"></a>Function: <strong>make-alist-history-lens</strong> <em>KEY</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dALIST_002dHISTORY_002dLENS-function"></a><a name="index-Function_002c-make_002dalist_002dhistory_002dlens"></a>
|
||||
<p>A lens for updating a alist, preserving previous values
|
||||
</p><dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_003cdot_003elenses-package.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES-package"><tt>data-lens.lenses</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-matching_002dlist_002dreducer"></a>Function: <strong>matching-list-reducer</strong> <em>TEST ACC NEXT</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eMATCHING_002dLIST_002dREDUCER-function"></a><a name="index-Function_002c-matching_002dlist_002dreducer"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-update"></a>Function: <strong>update</strong> <em>THING FUN &rest ARGS</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eUPDATE-function"></a><a name="index-Function_002c-update"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-wrap_002dconstant"></a>Function: <strong>wrap-constant</strong> <em>V</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eWRAP_002dCONSTANT-function"></a><a name="index-Function_002c-wrap_002dconstant"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_003cdot_003elenses-package.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES-package"><tt>data-lens.lenses</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-wrap_002didentity"></a>Function: <strong>wrap-identity</strong> <em>V</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eWRAP_002dIDENTITY-function"></a><a name="index-Function_002c-wrap_002didentity"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_003cdot_003elenses-package.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES-package"><tt>data-lens.lenses</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,154 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Internal generic functions (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Internal generic functions (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Internal-definitions.html#Internal-definitions" rel="up" title="Internal definitions">
|
||||
<link href="Internal-classes.html#Internal-classes" rel="next" title="Internal classes">
|
||||
<link href="Internal-functions.html#Internal-functions" rel="prev" title="Internal functions">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Internal-generic-functions"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="Internal-classes.html#Internal-classes" accesskey="n" rel="next">Internal classes</a>, Previous: <a href="Internal-functions.html#Internal-functions" accesskey="p" rel="prev">Internal functions</a>, Up: <a href="Internal-definitions.html#Internal-definitions" accesskey="u" rel="up">Internal definitions</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Generic-functions-1"></a>
|
||||
<h4 class="subsection">4.2.3 Generic functions</h4>
|
||||
<dl>
|
||||
<dt><a name="index-clone"></a>Generic Function: <strong>clone</strong> <em>OBJ &rest NEW-INITARGS &key</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCLONE-generic-function"></a><a name="index-Generic-Function_002c-clone"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_003cdot_003elenses-package.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES-package"><tt>data-lens.lenses</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
<dt><strong>Methods</strong></dt>
|
||||
<dd><dl>
|
||||
<dt><a name="index-clone-1"></a>Method: <strong>clone</strong> <em>OBJ &rest NEW-INITARGS &key <tt>around</tt></em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCLONE-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-AROUND-method"></a><a name="index-Method_002c-clone"></a>
|
||||
</dd></dl>
|
||||
</dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-fmap"></a>Generic Function: <strong>fmap</strong> <em>FUNCTION DATA</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-generic-function"></a><a name="index-Generic-Function_002c-fmap"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_003cdot_003elenses-package.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES-package"><tt>data-lens.lenses</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
<dt><strong>Methods</strong></dt>
|
||||
<dd><dl>
|
||||
<dt><a name="index-fmap-1"></a>Method: <strong>fmap</strong> <em>FUNCTION (DATA <tt>identity-</tt>)</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eIDENTITY_002d-method"></a><a name="index-Method_002c-fmap"></a>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-fmap-2"></a>Method: <strong>fmap</strong> <em>FUNCTION (DATA <tt>constant-</tt>)</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCONSTANT_002d-method"></a><a name="index-Method_002c-fmap-1"></a>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-fmap-3"></a>Method: <strong>fmap</strong> <em>FUNCTION (DATA <tt>list</tt>)</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-COMMON_002dLISP_003ccolon_003e_003ccolon_003eLIST-method"></a><a name="index-Method_002c-fmap-2"></a>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-fmap-4"></a>Method: <strong>fmap</strong> <em>FUNCTION (DATA <tt>vector</tt>)</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-COMMON_002dLISP_003ccolon_003e_003ccolon_003eVECTOR-method"></a><a name="index-Method_002c-fmap-3"></a>
|
||||
</dd></dl>
|
||||
</dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-unconstant"></a>Generic Function: <strong>unconstant</strong> <em>OBJECT</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNCONSTANT-generic-function"></a><a name="index-Generic-Function_002c-unconstant"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_003cdot_003elenses-package.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES-package"><tt>data-lens.lenses</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Methods</strong></dt>
|
||||
<dd><dl>
|
||||
<dt><a name="index-unconstant-1"></a>Method: <strong>unconstant</strong> <em>(CONSTANT- <tt>constant-</tt>)</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNCONSTANT-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCONSTANT_002d-method"></a><a name="index-Method_002c-unconstant"></a>
|
||||
<p>automatically generated reader method
|
||||
</p><dl compact="compact">
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
</dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
<dl>
|
||||
<dt><a name="index-unidentity"></a>Generic Function: <strong>unidentity</strong> <em>OBJECT</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNIDENTITY-generic-function"></a><a name="index-Generic-Function_002c-unidentity"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_003cdot_003elenses-package.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES-package"><tt>data-lens.lenses</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Methods</strong></dt>
|
||||
<dd><dl>
|
||||
<dt><a name="index-unidentity-1"></a>Method: <strong>unidentity</strong> <em>(IDENTITY- <tt>identity-</tt>)</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNIDENTITY-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eIDENTITY_002d-method"></a><a name="index-Method_002c-unidentity"></a>
|
||||
<p>automatically generated reader method
|
||||
</p><dl compact="compact">
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
</dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,76 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Internal macros (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Internal macros (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Internal-definitions.html#Internal-definitions" rel="up" title="Internal definitions">
|
||||
<link href="Internal-functions.html#Internal-functions" rel="next" title="Internal functions">
|
||||
<link href="Internal-definitions.html#Internal-definitions" rel="prev" title="Internal definitions">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Internal-macros"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="Internal-functions.html#Internal-functions" accesskey="n" rel="next">Internal functions</a>, Previous: <a href="Internal-definitions.html#Internal-definitions" accesskey="p" rel="prev">Internal definitions</a>, Up: <a href="Internal-definitions.html#Internal-definitions" accesskey="u" rel="up">Internal definitions</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Macros-1"></a>
|
||||
<h4 class="subsection">4.2.1 Macros</h4>
|
||||
<dl>
|
||||
<dt><a name="index-updatef"></a>Macro: <strong>updatef</strong> <em>PLACE FUN &rest ARGS</em></dt>
|
||||
<dd><a name="go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eUPDATEF-macro"></a><a name="index-Macro_002c-updatef"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Package</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</p></dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
</dd></dl>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,70 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Lisp files (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Lisp files (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Files.html#Files" rel="up" title="Files">
|
||||
<link href="The-data_002dlens_003cdot_003easd-file.html#The-data_002dlens_003cdot_003easd-file" rel="next" title="The data-lens<dot>asd file">
|
||||
<link href="Files.html#Files" rel="prev" title="Files">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Lisp-files"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Previous: <a href="Files.html#Files" accesskey="p" rel="prev">Files</a>, Up: <a href="Files.html#Files" accesskey="u" rel="up">Files</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Lisp"></a>
|
||||
<h3 class="section">2.1 Lisp</h3>
|
||||
<table class="menu" border="0" cellspacing="0">
|
||||
<tr><td align="left" valign="top">• <a href="The-data_002dlens_003cdot_003easd-file.html#The-data_002dlens_003cdot_003easd-file" accesskey="1">The data-lens.asd file</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
<tr><td align="left" valign="top">• <a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#The-data_002dlens_002flens_003cdot_003elisp-file" accesskey="2">The data-lens/lens.lisp file</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,73 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Packages (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Packages (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html#Top" rel="up" title="Top">
|
||||
<link href="The-data_002dlens-package.html#The-data_002dlens-package" rel="next" title="The data-lens package">
|
||||
<link href="The-data_002dlens_002flens_003cdot_003elisp-file.html#The-data_002dlens_002flens_003cdot_003elisp-file" rel="prev" title="The data-lens/lens<dot>lisp file">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Packages"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="Definitions.html#Definitions" accesskey="n" rel="next">Definitions</a>, Previous: <a href="Files.html#Files" accesskey="p" rel="prev">Files</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Packages-1"></a>
|
||||
<h2 class="chapter">3 Packages</h2>
|
||||
<p>Packages are listed by definition order.
|
||||
</p>
|
||||
<table class="menu" border="0" cellspacing="0">
|
||||
<tr><td align="left" valign="top">• <a href="The-data_002dlens-package.html#The-data_002dlens-package" accesskey="1">The data-lens package</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
<tr><td align="left" valign="top">• <a href="The-data_002dlens_003cdot_003elenses-package.html#The-data_002dlens_003cdot_003elenses-package" accesskey="2">The data-lens.lenses package</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,71 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Systems (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Systems (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="index.html#Top" rel="up" title="Top">
|
||||
<link href="The-data_002dlens-system.html#The-data_002dlens-system" rel="next" title="The data-lens system">
|
||||
<link href="index.html#Top" rel="prev" title="Top">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Systems"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="Files.html#Files" accesskey="n" rel="next">Files</a>, Previous: <a href="index.html#Top" accesskey="p" rel="prev">Top</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Systems-1"></a>
|
||||
<h2 class="chapter">1 Systems</h2>
|
||||
<p>The main system appears first, followed by any subsystem dependency.
|
||||
</p>
|
||||
<table class="menu" border="0" cellspacing="0">
|
||||
<tr><td align="left" valign="top">• <a href="The-data_002dlens-system.html#The-data_002dlens-system" accesskey="1">The data-lens system</a>:</td><td> </td><td align="left" valign="top">
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,125 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>The data-lens package (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="The data-lens package (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Packages.html#Packages" rel="up" title="Packages">
|
||||
<link href="The-data_002dlens_003cdot_003elenses-package.html#The-data_002dlens_003cdot_003elenses-package" rel="next" title="The data-lens<dot>lenses package">
|
||||
<link href="Packages.html#Packages" rel="prev" title="Packages">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="The-data_002dlens-package"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="The-data_002dlens_003cdot_003elenses-package.html#The-data_002dlens_003cdot_003elenses-package" accesskey="n" rel="next">The data-lens<dot>lenses package</a>, Previous: <a href="Packages.html#Packages" accesskey="p" rel="prev">Packages</a>, Up: <a href="Packages.html#Packages" accesskey="u" rel="up">Packages</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="data_002dlens-1"></a>
|
||||
<h3 class="section">3.1 <tt>data-lens</tt></h3>
|
||||
<a name="go-to-the-DATA_002dLENS-package"></a><a name="index-data_002dlens-1"></a>
|
||||
<a name="index-Package_002c-data_002dlens"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
<dt><strong>Use List</strong></dt>
|
||||
<dd><p><tt>common-lisp</tt>
|
||||
</p></dd>
|
||||
<dt><strong>Exported Definitions</strong></dt>
|
||||
<dd><ul>
|
||||
<li> <a href="Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003e_003c_003e1-macro"><tt><>1</tt></a> (macro)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eAPPLICABLE_002dWHEN-function"><tt>applicable-when</tt></a> (function)
|
||||
</li><li> <a href="Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eAPPLYING-macro"><tt>applying</tt></a> (macro)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCOMBINE_002dMATCHING_002dLISTS-function"><tt>combine-matching-lists</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCOMPRESS_002dRUNS-function"><tt>compress-runs</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCUMSUM-function"><tt>cumsum</tt></a> (function)
|
||||
</li><li> <a href="Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDEFUN_002dCT-macro"><tt>defun-ct</tt></a> (macro)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDENEST-function"><tt>denest</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDERIVE-function"><tt>derive</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eELEMENT-function"><tt>element</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXCLUDE-function"><tt>exclude</tt></a> (function)
|
||||
</li><li> <a href="Exported-generic-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXTRACT_002dKEY-generic-function"><tt>extract-key</tt></a> (generic function)
|
||||
</li><li> <a href="Exported-generic-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXTRACT_002dKEY-COMMON_002dLISP_003ccolon_003e_003ccolon_003eHASH_002dTABLE-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-method"><tt>extract-key</tt></a> (method)
|
||||
</li><li> <a href="Exported-generic-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXTRACT_002dKEY-COMMON_002dLISP_003ccolon_003e_003ccolon_003eLIST-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-method"><tt>extract-key</tt></a> (method)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eINCLUDE-function"><tt>include</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eJUXT-function"><tt>juxt</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eKEY-function"><tt>key</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eKEY_002dTRANSFORM-function"><tt>key-transform</tt></a> (function)
|
||||
</li><li> <a href="Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eLET_002dFN-macro"><tt>let-fn</tt></a> (macro)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eMAXIMIZING-function"><tt>maximizing</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOF_002dLENGTH-function"><tt>of-length</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOF_002dMAX_002dLENGTH-function"><tt>of-max-length</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOF_002dMIN_002dLENGTH-function"><tt>of-min-length</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eON-function"><tt>on</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOVER-function"><tt>over</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003ePICK-function"><tt>pick</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eREGEX_002dMATCH-function"><tt>regex-match</tt></a> (function)
|
||||
</li><li> <a href="Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSHORTCUT-macro"><tt>shortcut</tt></a> (macro)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSLICE-function"><tt>slice</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSORTED-function"><tt>sorted</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSPLICE_002dELT-function"><tt>splice-elt</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eTRANSFORM_002dELT-function"><tt>transform-elt</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eTRANSFORM_002dHEAD-function"><tt>transform-head</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eTRANSFORM_002dTAIL-function"><tt>transform-tail</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eZIPPING-function"><tt>zipping</tt></a> (function)
|
||||
</li></ul>
|
||||
</dd>
|
||||
<dt><strong>Internal Definitions</strong></dt>
|
||||
<dd><ul>
|
||||
<li> <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003e_003d_003e_003e-function"><tt>=>></tt></a> (function)
|
||||
</li><li> <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCONS_002dNEW-function"><tt>cons-new</tt></a> (function)
|
||||
</li><li> <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDEDUPLICATE-function"><tt>deduplicate</tt></a> (function)
|
||||
</li><li> <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eFILLER-function"><tt>filler</tt></a> (function)
|
||||
</li><li> <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eMATCHING_002dLIST_002dREDUCER-function"><tt>matching-list-reducer</tt></a> (function)
|
||||
</li><li> <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eUPDATE-function"><tt>update</tt></a> (function)
|
||||
</li><li> <a href="Internal-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eUPDATEF-macro"><tt>updatef</tt></a> (macro)
|
||||
</li></ul>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,92 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>The data-lens system (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="The data-lens system (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Systems.html#Systems" rel="up" title="Systems">
|
||||
<link href="Files.html#Files" rel="next" title="Files">
|
||||
<link href="Systems.html#Systems" rel="prev" title="Systems">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="The-data_002dlens-system"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Previous: <a href="Systems.html#Systems" accesskey="p" rel="prev">Systems</a>, Up: <a href="Systems.html#Systems" accesskey="u" rel="up">Systems</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="data_002dlens"></a>
|
||||
<h3 class="section">1.1 <tt>data-lens</tt></h3>
|
||||
<a name="go-to-the-data_002dlens-system"></a><a name="index-data_002dlens"></a>
|
||||
<a name="index-System_002c-data_002dlens"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Author</strong></dt>
|
||||
<dd><p>Edward Langley <<a href="mailto:el-cl@elangley.org">el-cl@elangley.org</a>>
|
||||
</p></dd>
|
||||
<dt><strong>License</strong></dt>
|
||||
<dd><p>MIT
|
||||
</p></dd>
|
||||
<dt><strong>Description</strong></dt>
|
||||
<dd><p>Utilities for building data transormations from composable functions, modeled on lenses and transducers
|
||||
</p></dd>
|
||||
<dt><strong>Dependencies</strong></dt>
|
||||
<dd><ul>
|
||||
<li> <tt>cl-ppcre</tt>
|
||||
</li><li> <tt>alexandria</tt>
|
||||
</li><li> <tt>serapeum</tt>
|
||||
</li></ul>
|
||||
</dd>
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_003cdot_003easd-file.html#go-to-the-data_002dlens_003cdot_003easd-file"><tt>data-lens.asd</tt></a> (file)
|
||||
</p></dd>
|
||||
<dt><strong>Component</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,158 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>The data-lens/lens<dot>lisp file (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="The data-lens/lens<dot>lisp file (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Lisp-files.html#Lisp-files" rel="up" title="Lisp files">
|
||||
<link href="Packages.html#Packages" rel="next" title="Packages">
|
||||
<link href="The-data_002dlens_003cdot_003easd-file.html#The-data_002dlens_003cdot_003easd-file" rel="prev" title="The data-lens<dot>asd file">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="The-data_002dlens_002flens_003cdot_003elisp-file"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Previous: <a href="The-data_002dlens_003cdot_003easd-file.html#The-data_002dlens_003cdot_003easd-file" accesskey="p" rel="prev">The data-lens<dot>asd file</a>, Up: <a href="Lisp-files.html#Lisp-files" accesskey="u" rel="up">Lisp files</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="data_002dlens_002flens_002elisp"></a>
|
||||
<h4 class="subsection">2.1.2 <tt>data-lens/lens.lisp</tt></h4>
|
||||
<a name="go-to-the-data_002dlens_002flens_003cdot_003elisp-file"></a><a name="index-data_002dlens_002flens_002elisp"></a>
|
||||
<a name="index-Lisp-File_002c-data_002dlens_002flens_002elisp"></a>
|
||||
<a name="index-File_002c-Lisp_002c-data_002dlens_002flens_002elisp"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Parent</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-system.html#go-to-the-data_002dlens-system"><tt>data-lens</tt></a> (system)
|
||||
</p></dd>
|
||||
<dt><strong>Location</strong></dt>
|
||||
<dd><p><tt>lens.lisp</tt>
|
||||
</p></dd>
|
||||
<dt><strong>Packages</strong></dt>
|
||||
<dd><ul>
|
||||
<li> <a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package"><tt>data-lens</tt></a>
|
||||
</li><li> <a href="The-data_002dlens_003cdot_003elenses-package.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES-package"><tt>data-lens.lenses</tt></a>
|
||||
</li></ul>
|
||||
</dd>
|
||||
<dt><strong>Exported Definitions</strong></dt>
|
||||
<dd><ul>
|
||||
<li> <a href="Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003e_003c_003e1-macro"><tt><>1</tt></a> (macro)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eAPPLICABLE_002dWHEN-function"><tt>applicable-when</tt></a> (function)
|
||||
</li><li> <a href="Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eAPPLYING-macro"><tt>applying</tt></a> (macro)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCOMBINE_002dMATCHING_002dLISTS-function"><tt>combine-matching-lists</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCOMPRESS_002dRUNS-function"><tt>compress-runs</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCUMSUM-function"><tt>cumsum</tt></a> (function)
|
||||
</li><li> <a href="Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDEFUN_002dCT-macro"><tt>defun-ct</tt></a> (macro)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDENEST-function"><tt>denest</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDERIVE-function"><tt>derive</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eELEMENT-function"><tt>element</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXCLUDE-function"><tt>exclude</tt></a> (function)
|
||||
</li><li> <a href="Exported-generic-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXTRACT_002dKEY-generic-function"><tt>extract-key</tt></a> (generic function)
|
||||
</li><li> <a href="Exported-generic-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXTRACT_002dKEY-COMMON_002dLISP_003ccolon_003e_003ccolon_003eHASH_002dTABLE-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-method"><tt>extract-key</tt></a> (method)
|
||||
</li><li> <a href="Exported-generic-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXTRACT_002dKEY-COMMON_002dLISP_003ccolon_003e_003ccolon_003eLIST-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-method"><tt>extract-key</tt></a> (method)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eINCLUDE-function"><tt>include</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eJUXT-function"><tt>juxt</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eKEY-function"><tt>key</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eKEY_002dTRANSFORM-function"><tt>key-transform</tt></a> (function)
|
||||
</li><li> <a href="Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eLET_002dFN-macro"><tt>let-fn</tt></a> (macro)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dALIST_002dLENS-function"><tt>make-alist-lens</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dHASH_002dTABLE_002dLENS-function"><tt>make-hash-table-lens</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dPLIST_002dLENS-function"><tt>make-plist-lens</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eMAXIMIZING-function"><tt>maximizing</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOF_002dLENGTH-function"><tt>of-length</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOF_002dMAX_002dLENGTH-function"><tt>of-max-length</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOF_002dMIN_002dLENGTH-function"><tt>of-min-length</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eON-function"><tt>on</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOVER-function"><tt>over</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eOVER-function"><tt>over</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003ePICK-function"><tt>pick</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eREGEX_002dMATCH-function"><tt>regex-match</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eSET-function"><tt>set</tt></a> (function)
|
||||
</li><li> <a href="Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSHORTCUT-macro"><tt>shortcut</tt></a> (macro)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSLICE-function"><tt>slice</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSORTED-function"><tt>sorted</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSPLICE_002dELT-function"><tt>splice-elt</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eTRANSFORM_002dELT-function"><tt>transform-elt</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eTRANSFORM_002dHEAD-function"><tt>transform-head</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eTRANSFORM_002dTAIL-function"><tt>transform-tail</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eVIEW-function"><tt>view</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eZIPPING-function"><tt>zipping</tt></a> (function)
|
||||
</li></ul>
|
||||
</dd>
|
||||
<dt><strong>Internal Definitions</strong></dt>
|
||||
<dd><ul>
|
||||
<li> <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003e_003d_003e_003e-function"><tt>=>></tt></a> (function)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCLONE-generic-function"><tt>clone</tt></a> (generic function)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCLONE-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-AROUND-method"><tt>clone</tt></a> (method)
|
||||
</li><li> <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCONS_002dNEW-function"><tt>cons-new</tt></a> (function)
|
||||
</li><li> <a href="Internal-classes.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCONSTANT_002d-class"><tt>constant-</tt></a> (class)
|
||||
</li><li> <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDEDUPLICATE-function"><tt>deduplicate</tt></a> (function)
|
||||
</li><li> <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eFILLER-function"><tt>filler</tt></a> (function)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-generic-function"><tt>fmap</tt></a> (generic function)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eIDENTITY_002d-method"><tt>fmap</tt></a> (method)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCONSTANT_002d-method"><tt>fmap</tt></a> (method)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-COMMON_002dLISP_003ccolon_003e_003ccolon_003eLIST-method"><tt>fmap</tt></a> (method)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-COMMON_002dLISP_003ccolon_003e_003ccolon_003eVECTOR-method"><tt>fmap</tt></a> (method)
|
||||
</li><li> <a href="Internal-classes.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eIDENTITY_002d-class"><tt>identity-</tt></a> (class)
|
||||
</li><li> <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dALIST_002dHISTORY_002dLENS-function"><tt>make-alist-history-lens</tt></a> (function)
|
||||
</li><li> <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eMATCHING_002dLIST_002dREDUCER-function"><tt>matching-list-reducer</tt></a> (function)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNCONSTANT-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCONSTANT_002d-method"><tt>unconstant</tt></a> (method)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNIDENTITY-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eIDENTITY_002d-method"><tt>unidentity</tt></a> (method)
|
||||
</li><li> <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eUPDATE-function"><tt>update</tt></a> (function)
|
||||
</li><li> <a href="Internal-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eUPDATEF-macro"><tt>updatef</tt></a> (macro)
|
||||
</li><li> <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eWRAP_002dCONSTANT-function"><tt>wrap-constant</tt></a> (function)
|
||||
</li><li> <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eWRAP_002dIDENTITY-function"><tt>wrap-identity</tt></a> (function)
|
||||
</li></ul>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<div class="header">
|
||||
<p>
|
||||
Previous: <a href="The-data_002dlens_003cdot_003easd-file.html#The-data_002dlens_003cdot_003easd-file" accesskey="p" rel="prev">The data-lens<dot>asd file</a>, Up: <a href="Lisp-files.html#Lisp-files" accesskey="u" rel="up">Lisp files</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,75 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>The data-lens<dot>asd file (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="The data-lens<dot>asd file (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Lisp-files.html#Lisp-files" rel="up" title="Lisp files">
|
||||
<link href="The-data_002dlens_002flens_003cdot_003elisp-file.html#The-data_002dlens_002flens_003cdot_003elisp-file" rel="next" title="The data-lens/lens<dot>lisp file">
|
||||
<link href="Lisp-files.html#Lisp-files" rel="prev" title="Lisp files">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="The-data_002dlens_003cdot_003easd-file"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#The-data_002dlens_002flens_003cdot_003elisp-file" accesskey="n" rel="next">The data-lens/lens<dot>lisp file</a>, Previous: <a href="Lisp-files.html#Lisp-files" accesskey="p" rel="prev">Lisp files</a>, Up: <a href="Lisp-files.html#Lisp-files" accesskey="u" rel="up">Lisp files</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="data_002dlens_002easd"></a>
|
||||
<h4 class="subsection">2.1.1 <tt>data-lens.asd</tt></h4>
|
||||
<a name="go-to-the-data_002dlens_003cdot_003easd-file"></a><a name="index-data_002dlens_002easd"></a>
|
||||
<a name="index-Lisp-File_002c-data_002dlens_002easd"></a>
|
||||
<a name="index-File_002c-Lisp_002c-data_002dlens_002easd"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Location</strong></dt>
|
||||
<dd><p><tt>data-lens.asd</tt>
|
||||
</p></dd>
|
||||
<dt><strong>Systems</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens-system.html#go-to-the-data_002dlens-system"><tt>data-lens</tt></a> (system)
|
||||
</p></dd>
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,106 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>The data-lens<dot>lenses package (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="The data-lens<dot>lenses package (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Packages.html#Packages" rel="up" title="Packages">
|
||||
<link href="Definitions.html#Definitions" rel="next" title="Definitions">
|
||||
<link href="The-data_002dlens-package.html#The-data_002dlens-package" rel="prev" title="The data-lens package">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="The-data_002dlens_003cdot_003elenses-package"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Previous: <a href="The-data_002dlens-package.html#The-data_002dlens-package" accesskey="p" rel="prev">The data-lens package</a>, Up: <a href="Packages.html#Packages" accesskey="u" rel="up">Packages</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="data_002dlens_002elenses"></a>
|
||||
<h3 class="section">3.2 <tt>data-lens.lenses</tt></h3>
|
||||
<a name="go-to-the-DATA_002dLENS_003cdot_003eLENSES-package"></a><a name="index-data_002dlens_002elenses"></a>
|
||||
<a name="index-Package_002c-data_002dlens_002elenses"></a>
|
||||
<dl compact="compact">
|
||||
<dt><strong>Source</strong></dt>
|
||||
<dd><p><a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file"><tt>lens.lisp</tt></a> (file)
|
||||
</p></dd>
|
||||
<dt><strong>Use List</strong></dt>
|
||||
<dd><p><tt>common-lisp</tt>
|
||||
</p></dd>
|
||||
<dt><strong>Exported Definitions</strong></dt>
|
||||
<dd><ul>
|
||||
<li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dALIST_002dLENS-function"><tt>make-alist-lens</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dHASH_002dTABLE_002dLENS-function"><tt>make-hash-table-lens</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dPLIST_002dLENS-function"><tt>make-plist-lens</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eOVER-function"><tt>over</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eSET-function"><tt>set</tt></a> (function)
|
||||
</li><li> <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eVIEW-function"><tt>view</tt></a> (function)
|
||||
</li></ul>
|
||||
</dd>
|
||||
<dt><strong>Internal Definitions</strong></dt>
|
||||
<dd><ul>
|
||||
<li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCLONE-generic-function"><tt>clone</tt></a> (generic function)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCLONE-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-AROUND-method"><tt>clone</tt></a> (method)
|
||||
</li><li> <a href="Internal-classes.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCONSTANT_002d-class"><tt>constant-</tt></a> (class)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-generic-function"><tt>fmap</tt></a> (generic function)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eIDENTITY_002d-method"><tt>fmap</tt></a> (method)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCONSTANT_002d-method"><tt>fmap</tt></a> (method)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-COMMON_002dLISP_003ccolon_003e_003ccolon_003eLIST-method"><tt>fmap</tt></a> (method)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-COMMON_002dLISP_003ccolon_003e_003ccolon_003eVECTOR-method"><tt>fmap</tt></a> (method)
|
||||
</li><li> <a href="Internal-classes.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eIDENTITY_002d-class"><tt>identity-</tt></a> (class)
|
||||
</li><li> <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dALIST_002dHISTORY_002dLENS-function"><tt>make-alist-history-lens</tt></a> (function)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNCONSTANT-generic-function"><tt>unconstant</tt></a> (generic function)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNCONSTANT-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCONSTANT_002d-method"><tt>unconstant</tt></a> (method)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNIDENTITY-generic-function"><tt>unidentity</tt></a> (generic function)
|
||||
</li><li> <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNIDENTITY-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eIDENTITY_002d-method"><tt>unidentity</tt></a> (method)
|
||||
</li><li> <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eWRAP_002dCONSTANT-function"><tt>wrap-constant</tt></a> (function)
|
||||
</li><li> <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eWRAP_002dIDENTITY-function"><tt>wrap-identity</tt></a> (function)
|
||||
</li></ul>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -1,90 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Variable index (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Variable index (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="index.html#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="Indexes.html#Indexes" rel="up" title="Indexes">
|
||||
<link href="Data-type-index.html#Data-type-index" rel="next" title="Data type index">
|
||||
<link href="Function-index.html#Function-index" rel="prev" title="Function index">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<a name="Variable-index"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="Data-type-index.html#Data-type-index" accesskey="n" rel="next">Data type index</a>, Previous: <a href="Function-index.html#Function-index" accesskey="p" rel="prev">Function index</a>, Up: <a href="Indexes.html#Indexes" accesskey="u" rel="up">Indexes</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="Variables"></a>
|
||||
<h3 class="appendixsec">A.3 Variables</h3>
|
||||
<table><tr><th valign="top">Jump to: </th><td><a class="summary-letter" href="#Variable-index_vr_symbol-1"><b>%</b></a>
|
||||
|
||||
<br>
|
||||
<a class="summary-letter" href="#Variable-index_vr_letter-S"><b>S</b></a>
|
||||
|
||||
</td></tr></table>
|
||||
<table class="index-vr" border="0">
|
||||
<tr><td></td><th align="left">Index Entry</th><td> </td><th align="left"> Section</th></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Variable-index_vr_symbol-1">%</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-classes.html#index-_0025v"><code>%v</code></a>:</td><td> </td><td valign="top"><a href="Internal-classes.html#Internal-classes">Internal classes</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-classes.html#index-_0025v-1"><code>%v</code></a>:</td><td> </td><td valign="top"><a href="Internal-classes.html#Internal-classes">Internal classes</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
<tr><th><a name="Variable-index_vr_letter-S">S</a></th><td></td><td></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-classes.html#index-Slot_002c-_0025v"><code><span class="roman">Slot, </span>%v</code></a>:</td><td> </td><td valign="top"><a href="Internal-classes.html#Internal-classes">Internal classes</a></td></tr>
|
||||
<tr><td></td><td valign="top"><a href="Internal-classes.html#index-Slot_002c-_0025v-1"><code><span class="roman">Slot, </span>%v</code></a>:</td><td> </td><td valign="top"><a href="Internal-classes.html#Internal-classes">Internal classes</a></td></tr>
|
||||
<tr><td colspan="4"> <hr></td></tr>
|
||||
</table>
|
||||
<table><tr><th valign="top">Jump to: </th><td><a class="summary-letter" href="#Variable-index_vr_symbol-1"><b>%</b></a>
|
||||
|
||||
<br>
|
||||
<a class="summary-letter" href="#Variable-index_vr_letter-S"><b>S</b></a>
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
1446
docs/data-lens.texi
1446
docs/data-lens.texi
File diff suppressed because it is too large
Load Diff
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS package (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS package (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="The-data_002dlens-package.html#go-to-the-DATA_002dLENS-package">go to the DATA-LENS package</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>APPLICABLE-WHEN function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>APPLICABLE-WHEN function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eAPPLICABLE_002dWHEN-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eAPPLICABLE_002dWHEN-function">go to the DATA-LENS<colon><colon>APPLICABLE-WHEN function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>APPLYING macro (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>APPLYING macro (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eAPPLYING-macro">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eAPPLYING-macro">go to the DATA-LENS<colon><colon>APPLYING macro</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>COMBINE-MATCHING-LISTS function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>COMBINE-MATCHING-LISTS function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCOMBINE_002dMATCHING_002dLISTS-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCOMBINE_002dMATCHING_002dLISTS-function">go to the DATA-LENS<colon><colon>COMBINE-MATCHING-LISTS function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>COMPRESS-RUNS function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>COMPRESS-RUNS function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCOMPRESS_002dRUNS-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCOMPRESS_002dRUNS-function">go to the DATA-LENS<colon><colon>COMPRESS-RUNS function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>CONS-NEW function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>CONS-NEW function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCONS_002dNEW-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCONS_002dNEW-function">go to the DATA-LENS<colon><colon>CONS-NEW function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>CUMSUM function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>CUMSUM function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCUMSUM-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eCUMSUM-function">go to the DATA-LENS<colon><colon>CUMSUM function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>DEDUPLICATE function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>DEDUPLICATE function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDEDUPLICATE-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDEDUPLICATE-function">go to the DATA-LENS<colon><colon>DEDUPLICATE function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>DEFUN-CT macro (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>DEFUN-CT macro (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDEFUN_002dCT-macro">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDEFUN_002dCT-macro">go to the DATA-LENS<colon><colon>DEFUN-CT macro</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>DENEST function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>DENEST function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDENEST-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDENEST-function">go to the DATA-LENS<colon><colon>DENEST function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>DERIVE function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>DERIVE function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDERIVE-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eDERIVE-function">go to the DATA-LENS<colon><colon>DERIVE function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>ELEMENT function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>ELEMENT function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eELEMENT-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eELEMENT-function">go to the DATA-LENS<colon><colon>ELEMENT function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>EXCLUDE function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>EXCLUDE function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXCLUDE-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXCLUDE-function">go to the DATA-LENS<colon><colon>EXCLUDE function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>EXTRACT-KEY COMMON-LISP<colon><colon>HASH-TABLE COMMON-LISP<colon><colon>T method (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>EXTRACT-KEY COMMON-LISP<colon><colon>HASH-TABLE COMMON-LISP<colon><colon>T method (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-generic-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXTRACT_002dKEY-COMMON_002dLISP_003ccolon_003e_003ccolon_003eHASH_002dTABLE-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-method">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-generic-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXTRACT_002dKEY-COMMON_002dLISP_003ccolon_003e_003ccolon_003eHASH_002dTABLE-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-method">go to the DATA-LENS<colon><colon>EXTRACT-KEY COMMON-LISP<colon><colon>HASH-TABLE COMMON-LISP<colon><colon>T method</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>EXTRACT-KEY COMMON-LISP<colon><colon>LIST COMMON-LISP<colon><colon>T method (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>EXTRACT-KEY COMMON-LISP<colon><colon>LIST COMMON-LISP<colon><colon>T method (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-generic-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXTRACT_002dKEY-COMMON_002dLISP_003ccolon_003e_003ccolon_003eLIST-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-method">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-generic-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXTRACT_002dKEY-COMMON_002dLISP_003ccolon_003e_003ccolon_003eLIST-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-method">go to the DATA-LENS<colon><colon>EXTRACT-KEY COMMON-LISP<colon><colon>LIST COMMON-LISP<colon><colon>T method</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>EXTRACT-KEY generic function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>EXTRACT-KEY generic function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-generic-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXTRACT_002dKEY-generic-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-generic-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eEXTRACT_002dKEY-generic-function">go to the DATA-LENS<colon><colon>EXTRACT-KEY generic function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>FILLER function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>FILLER function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eFILLER-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eFILLER-function">go to the DATA-LENS<colon><colon>FILLER function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>INCLUDE function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>INCLUDE function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eINCLUDE-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eINCLUDE-function">go to the DATA-LENS<colon><colon>INCLUDE function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>JUXT function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>JUXT function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eJUXT-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eJUXT-function">go to the DATA-LENS<colon><colon>JUXT function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>KEY function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>KEY function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eKEY-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eKEY-function">go to the DATA-LENS<colon><colon>KEY function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>KEY-TRANSFORM function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>KEY-TRANSFORM function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eKEY_002dTRANSFORM-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eKEY_002dTRANSFORM-function">go to the DATA-LENS<colon><colon>KEY-TRANSFORM function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>LET-FN macro (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>LET-FN macro (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eLET_002dFN-macro">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eLET_002dFN-macro">go to the DATA-LENS<colon><colon>LET-FN macro</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>MATCHING-LIST-REDUCER function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>MATCHING-LIST-REDUCER function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eMATCHING_002dLIST_002dREDUCER-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eMATCHING_002dLIST_002dREDUCER-function">go to the DATA-LENS<colon><colon>MATCHING-LIST-REDUCER function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>MAXIMIZING function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>MAXIMIZING function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eMAXIMIZING-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eMAXIMIZING-function">go to the DATA-LENS<colon><colon>MAXIMIZING function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>OF-LENGTH function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>OF-LENGTH function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOF_002dLENGTH-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOF_002dLENGTH-function">go to the DATA-LENS<colon><colon>OF-LENGTH function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>OF-MAX-LENGTH function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>OF-MAX-LENGTH function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOF_002dMAX_002dLENGTH-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOF_002dMAX_002dLENGTH-function">go to the DATA-LENS<colon><colon>OF-MAX-LENGTH function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>OF-MIN-LENGTH function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>OF-MIN-LENGTH function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOF_002dMIN_002dLENGTH-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOF_002dMIN_002dLENGTH-function">go to the DATA-LENS<colon><colon>OF-MIN-LENGTH function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>ON function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>ON function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eON-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eON-function">go to the DATA-LENS<colon><colon>ON function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>OVER function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>OVER function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOVER-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eOVER-function">go to the DATA-LENS<colon><colon>OVER function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>PICK function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>PICK function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003ePICK-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003ePICK-function">go to the DATA-LENS<colon><colon>PICK function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>REGEX-MATCH function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>REGEX-MATCH function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eREGEX_002dMATCH-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eREGEX_002dMATCH-function">go to the DATA-LENS<colon><colon>REGEX-MATCH function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>SHORTCUT macro (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>SHORTCUT macro (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSHORTCUT-macro">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSHORTCUT-macro">go to the DATA-LENS<colon><colon>SHORTCUT macro</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>SLICE function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>SLICE function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSLICE-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSLICE-function">go to the DATA-LENS<colon><colon>SLICE function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>SORTED function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>SORTED function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSORTED-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSORTED-function">go to the DATA-LENS<colon><colon>SORTED function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>SPLICE-ELT function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>SPLICE-ELT function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSPLICE_002dELT-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eSPLICE_002dELT-function">go to the DATA-LENS<colon><colon>SPLICE-ELT function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>TRANSFORM-ELT function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>TRANSFORM-ELT function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eTRANSFORM_002dELT-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eTRANSFORM_002dELT-function">go to the DATA-LENS<colon><colon>TRANSFORM-ELT function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>TRANSFORM-HEAD function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>TRANSFORM-HEAD function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eTRANSFORM_002dHEAD-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eTRANSFORM_002dHEAD-function">go to the DATA-LENS<colon><colon>TRANSFORM-HEAD function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>TRANSFORM-TAIL function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>TRANSFORM-TAIL function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eTRANSFORM_002dTAIL-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eTRANSFORM_002dTAIL-function">go to the DATA-LENS<colon><colon>TRANSFORM-TAIL function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>UPDATE function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>UPDATE function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eUPDATE-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eUPDATE-function">go to the DATA-LENS<colon><colon>UPDATE function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>UPDATEF macro (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>UPDATEF macro (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eUPDATEF-macro">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eUPDATEF-macro">go to the DATA-LENS<colon><colon>UPDATEF macro</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>ZIPPING function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>ZIPPING function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eZIPPING-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003eZIPPING-function">go to the DATA-LENS<colon><colon>ZIPPING function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon><>1 macro (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon><>1 macro (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003e_003c_003e1-macro">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-macros.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003e_003c_003e1-macro">go to the DATA-LENS<colon><colon><>1 macro</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<colon><colon>=>> function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<colon><colon>=>> function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003e_003d_003e_003e-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003ccolon_003e_003ccolon_003e_003d_003e_003e-function">go to the DATA-LENS<colon><colon>=>> function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES package (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES package (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=The-data_002dlens_003cdot_003elenses-package.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES-package">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="The-data_002dlens_003cdot_003elenses-package.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES-package">go to the DATA-LENS<dot>LENSES package</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>CLONE COMMON-LISP<colon><colon>T AROUND method (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>CLONE COMMON-LISP<colon><colon>T AROUND method (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCLONE-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-AROUND-method">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCLONE-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-AROUND-method">go to the DATA-LENS<dot>LENSES<colon><colon>CLONE COMMON-LISP<colon><colon>T AROUND method</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>CLONE generic function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>CLONE generic function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCLONE-generic-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCLONE-generic-function">go to the DATA-LENS<dot>LENSES<colon><colon>CLONE generic function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>CONSTANT- class (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>CONSTANT- class (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-classes.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCONSTANT_002d-class">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-classes.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCONSTANT_002d-class">go to the DATA-LENS<dot>LENSES<colon><colon>CONSTANT- class</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>FMAP COMMON-LISP<colon><colon>T COMMON-LISP<colon><colon>LIST method (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>FMAP COMMON-LISP<colon><colon>T COMMON-LISP<colon><colon>LIST method (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-COMMON_002dLISP_003ccolon_003e_003ccolon_003eLIST-method">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-COMMON_002dLISP_003ccolon_003e_003ccolon_003eLIST-method">go to the DATA-LENS<dot>LENSES<colon><colon>FMAP COMMON-LISP<colon><colon>T COMMON-LISP<colon><colon>LIST method</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>FMAP COMMON-LISP<colon><colon>T COMMON-LISP<colon><colon>VECTOR method (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>FMAP COMMON-LISP<colon><colon>T COMMON-LISP<colon><colon>VECTOR method (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-COMMON_002dLISP_003ccolon_003e_003ccolon_003eVECTOR-method">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-COMMON_002dLISP_003ccolon_003e_003ccolon_003eVECTOR-method">go to the DATA-LENS<dot>LENSES<colon><colon>FMAP COMMON-LISP<colon><colon>T COMMON-LISP<colon><colon>VECTOR method</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>FMAP COMMON-LISP<colon><colon>T DATA-LENS<dot>LENSES<colon><colon>CONSTANT- method (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>FMAP COMMON-LISP<colon><colon>T DATA-LENS<dot>LENSES<colon><colon>CONSTANT- method (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCONSTANT_002d-method">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCONSTANT_002d-method">go to the DATA-LENS<dot>LENSES<colon><colon>FMAP COMMON-LISP<colon><colon>T DATA-LENS<dot>LENSES<colon><colon>CONSTANT- method</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>FMAP COMMON-LISP<colon><colon>T DATA-LENS<dot>LENSES<colon><colon>IDENTITY- method (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>FMAP COMMON-LISP<colon><colon>T DATA-LENS<dot>LENSES<colon><colon>IDENTITY- method (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eIDENTITY_002d-method">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-COMMON_002dLISP_003ccolon_003e_003ccolon_003eT-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eIDENTITY_002d-method">go to the DATA-LENS<dot>LENSES<colon><colon>FMAP COMMON-LISP<colon><colon>T DATA-LENS<dot>LENSES<colon><colon>IDENTITY- method</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>FMAP generic function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>FMAP generic function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-generic-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eFMAP-generic-function">go to the DATA-LENS<dot>LENSES<colon><colon>FMAP generic function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>IDENTITY- class (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>IDENTITY- class (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-classes.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eIDENTITY_002d-class">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-classes.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eIDENTITY_002d-class">go to the DATA-LENS<dot>LENSES<colon><colon>IDENTITY- class</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>MAKE-ALIST-HISTORY-LENS function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>MAKE-ALIST-HISTORY-LENS function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dALIST_002dHISTORY_002dLENS-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dALIST_002dHISTORY_002dLENS-function">go to the DATA-LENS<dot>LENSES<colon><colon>MAKE-ALIST-HISTORY-LENS function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>MAKE-ALIST-LENS function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>MAKE-ALIST-LENS function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dALIST_002dLENS-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dALIST_002dLENS-function">go to the DATA-LENS<dot>LENSES<colon><colon>MAKE-ALIST-LENS function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>MAKE-HASH-TABLE-LENS function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>MAKE-HASH-TABLE-LENS function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dHASH_002dTABLE_002dLENS-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dHASH_002dTABLE_002dLENS-function">go to the DATA-LENS<dot>LENSES<colon><colon>MAKE-HASH-TABLE-LENS function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>MAKE-PLIST-LENS function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>MAKE-PLIST-LENS function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dPLIST_002dLENS-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eMAKE_002dPLIST_002dLENS-function">go to the DATA-LENS<dot>LENSES<colon><colon>MAKE-PLIST-LENS function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>OVER function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>OVER function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eOVER-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eOVER-function">go to the DATA-LENS<dot>LENSES<colon><colon>OVER function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>SET function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>SET function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eSET-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eSET-function">go to the DATA-LENS<dot>LENSES<colon><colon>SET function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>UNCONSTANT DATA-LENS<dot>LENSES<colon><colon>CONSTANT- method (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>UNCONSTANT DATA-LENS<dot>LENSES<colon><colon>CONSTANT- method (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNCONSTANT-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCONSTANT_002d-method">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNCONSTANT-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eCONSTANT_002d-method">go to the DATA-LENS<dot>LENSES<colon><colon>UNCONSTANT DATA-LENS<dot>LENSES<colon><colon>CONSTANT- method</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>UNCONSTANT generic function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>UNCONSTANT generic function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNCONSTANT-generic-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNCONSTANT-generic-function">go to the DATA-LENS<dot>LENSES<colon><colon>UNCONSTANT generic function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>UNIDENTITY DATA-LENS<dot>LENSES<colon><colon>IDENTITY- method (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>UNIDENTITY DATA-LENS<dot>LENSES<colon><colon>IDENTITY- method (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNIDENTITY-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eIDENTITY_002d-method">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNIDENTITY-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eIDENTITY_002d-method">go to the DATA-LENS<dot>LENSES<colon><colon>UNIDENTITY DATA-LENS<dot>LENSES<colon><colon>IDENTITY- method</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>UNIDENTITY generic function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>UNIDENTITY generic function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNIDENTITY-generic-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-generic-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eUNIDENTITY-generic-function">go to the DATA-LENS<dot>LENSES<colon><colon>UNIDENTITY generic function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>VIEW function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>VIEW function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eVIEW-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Exported-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eVIEW-function">go to the DATA-LENS<dot>LENSES<colon><colon>VIEW function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>WRAP-CONSTANT function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>WRAP-CONSTANT function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eWRAP_002dCONSTANT-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eWRAP_002dCONSTANT-function">go to the DATA-LENS<dot>LENSES<colon><colon>WRAP-CONSTANT function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the DATA-LENS<dot>LENSES<colon><colon>WRAP-IDENTITY function (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the DATA-LENS<dot>LENSES<colon><colon>WRAP-IDENTITY function (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=Internal-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eWRAP_002dIDENTITY-function">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="Internal-functions.html#go-to-the-DATA_002dLENS_003cdot_003eLENSES_003ccolon_003e_003ccolon_003eWRAP_002dIDENTITY-function">go to the DATA-LENS<dot>LENSES<colon><colon>WRAP-IDENTITY function</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the data-lens system (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the data-lens system (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=The-data_002dlens-system.html#go-to-the-data_002dlens-system">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="The-data_002dlens-system.html#go-to-the-data_002dlens-system">go to the data-lens system</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the data-lens/lens<dot>lisp file (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the data-lens/lens<dot>lisp file (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="The-data_002dlens_002flens_003cdot_003elisp-file.html#go-to-the-data_002dlens_002flens_003cdot_003elisp-file">go to the data-lens/lens<dot>lisp file</a>.</p>
|
||||
</body>
|
||||
@ -1,49 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<!-- This file redirects to the location of a node or anchor -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>go to the data-lens<dot>asd file (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="go to the data-lens<dot>asd file (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
<meta http-equiv="Refresh" content="0; url=The-data_002dlens_003cdot_003easd-file.html#go-to-the-data_002dlens_003cdot_003easd-file">
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
|
||||
<p>The node you are looking for is at <a href="The-data_002dlens_003cdot_003easd-file.html#go-to-the-data_002dlens_003cdot_003easd-file">go to the data-lens<dot>asd file</a>.</p>
|
||||
</body>
|
||||
181
docs/index.html
181
docs/index.html
@ -1,181 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Top (The data-lens Reference Manual)</title>
|
||||
|
||||
<meta name="description" content="The data-lens Reference Manual.">
|
||||
<meta name="keywords" content="Top (The data-lens Reference Manual)">
|
||||
<meta name="resource-type" content="document">
|
||||
<meta name="distribution" content="global">
|
||||
<meta name="Generator" content="makeinfo">
|
||||
<link href="#Top" rel="start" title="Top">
|
||||
<link href="Indexes.html#Indexes" rel="index" title="Indexes">
|
||||
<link href="#SEC_Contents" rel="contents" title="Table of Contents">
|
||||
<link href="../dir/index.html" rel="up" title="(dir)">
|
||||
<link href="Systems.html#Systems" rel="next" title="Systems">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
a.summary-letter {text-decoration: none}
|
||||
blockquote.indentedblock {margin-right: 0em}
|
||||
blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
|
||||
blockquote.smallquotation {font-size: smaller}
|
||||
div.display {margin-left: 3.2em}
|
||||
div.example {margin-left: 3.2em}
|
||||
div.lisp {margin-left: 3.2em}
|
||||
div.smalldisplay {margin-left: 3.2em}
|
||||
div.smallexample {margin-left: 3.2em}
|
||||
div.smalllisp {margin-left: 3.2em}
|
||||
kbd {font-style: oblique}
|
||||
pre.display {font-family: inherit}
|
||||
pre.format {font-family: inherit}
|
||||
pre.menu-comment {font-family: serif}
|
||||
pre.menu-preformatted {font-family: serif}
|
||||
pre.smalldisplay {font-family: inherit; font-size: smaller}
|
||||
pre.smallexample {font-size: smaller}
|
||||
pre.smallformat {font-family: inherit; font-size: smaller}
|
||||
pre.smalllisp {font-size: smaller}
|
||||
span.nolinebreak {white-space: nowrap}
|
||||
span.roman {font-family: initial; font-weight: normal}
|
||||
span.sansserif {font-family: sans-serif; font-weight: normal}
|
||||
ul.no-bullet {list-style: none}
|
||||
-->
|
||||
</style>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body lang="en">
|
||||
<h1 class="settitle" align="center">The data-lens Reference Manual</h1>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a name="SEC_Contents"></a>
|
||||
<h2 class="contents-heading">Table of Contents</h2>
|
||||
|
||||
<div class="contents">
|
||||
|
||||
<ul class="no-bullet">
|
||||
<li><a name="toc-Systems-1" href="Systems.html#Systems">1 Systems</a>
|
||||
<ul class="no-bullet">
|
||||
<li><a name="toc-data_002dlens" href="The-data_002dlens-system.html#The-data_002dlens-system">1.1 <tt>data-lens</tt></a></li>
|
||||
</ul></li>
|
||||
<li><a name="toc-Files-1" href="Files.html#Files">2 Files</a>
|
||||
<ul class="no-bullet">
|
||||
<li><a name="toc-Lisp" href="Lisp-files.html#Lisp-files">2.1 Lisp</a>
|
||||
<ul class="no-bullet">
|
||||
<li><a name="toc-data_002dlens_002easd" href="The-data_002dlens_003cdot_003easd-file.html#The-data_002dlens_003cdot_003easd-file">2.1.1 <tt>data-lens.asd</tt></a></li>
|
||||
<li><a name="toc-data_002dlens_002flens_002elisp" href="The-data_002dlens_002flens_003cdot_003elisp-file.html#The-data_002dlens_002flens_003cdot_003elisp-file">2.1.2 <tt>data-lens/lens.lisp</tt></a></li>
|
||||
</ul></li>
|
||||
</ul></li>
|
||||
<li><a name="toc-Packages-1" href="Packages.html#Packages">3 Packages</a>
|
||||
<ul class="no-bullet">
|
||||
<li><a name="toc-data_002dlens-1" href="The-data_002dlens-package.html#The-data_002dlens-package">3.1 <tt>data-lens</tt></a></li>
|
||||
<li><a name="toc-data_002dlens_002elenses" href="The-data_002dlens_003cdot_003elenses-package.html#The-data_002dlens_003cdot_003elenses-package">3.2 <tt>data-lens.lenses</tt></a></li>
|
||||
</ul></li>
|
||||
<li><a name="toc-Definitions-1" href="Definitions.html#Definitions">4 Definitions</a>
|
||||
<ul class="no-bullet">
|
||||
<li><a name="toc-Exported-definitions-1" href="Exported-definitions.html#Exported-definitions">4.1 Exported definitions</a>
|
||||
<ul class="no-bullet">
|
||||
<li><a name="toc-Macros" href="Exported-macros.html#Exported-macros">4.1.1 Macros</a></li>
|
||||
<li><a name="toc-Functions" href="Exported-functions.html#Exported-functions">4.1.2 Functions</a></li>
|
||||
<li><a name="toc-Generic-functions" href="Exported-generic-functions.html#Exported-generic-functions">4.1.3 Generic functions</a></li>
|
||||
</ul></li>
|
||||
<li><a name="toc-Internal-definitions-1" href="Internal-definitions.html#Internal-definitions">4.2 Internal definitions</a>
|
||||
<ul class="no-bullet">
|
||||
<li><a name="toc-Macros-1" href="Internal-macros.html#Internal-macros">4.2.1 Macros</a></li>
|
||||
<li><a name="toc-Functions-1" href="Internal-functions.html#Internal-functions">4.2.2 Functions</a></li>
|
||||
<li><a name="toc-Generic-functions-1" href="Internal-generic-functions.html#Internal-generic-functions">4.2.3 Generic functions</a></li>
|
||||
<li><a name="toc-Classes" href="Internal-classes.html#Internal-classes">4.2.4 Classes</a></li>
|
||||
</ul></li>
|
||||
</ul></li>
|
||||
<li><a name="toc-Indexes-1" href="Indexes.html#Indexes">Appendix A Indexes</a>
|
||||
<ul class="no-bullet">
|
||||
<li><a name="toc-Concepts" href="Concept-index.html#Concept-index">A.1 Concepts</a></li>
|
||||
<li><a name="toc-Functions-2" href="Function-index.html#Function-index">A.2 Functions</a></li>
|
||||
<li><a name="toc-Variables" href="Variable-index.html#Variable-index">A.3 Variables</a></li>
|
||||
<li><a name="toc-Data-types" href="Data-type-index.html#Data-type-index">A.4 Data types</a></li>
|
||||
</ul></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<a name="Top"></a>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="Systems.html#Systems" accesskey="n" rel="next">Systems</a>, Previous: <a href="../dir/index.html" accesskey="p" rel="prev">(dir)</a>, Up: <a href="../dir/index.html" accesskey="u" rel="up">(dir)</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
<hr>
|
||||
<a name="The-data_002dlens-Reference-Manual"></a>
|
||||
<h1 class="top">The data-lens Reference Manual</h1>
|
||||
<p>This is the data-lens Reference Manual,
|
||||
generated automatically by Declt version 2.3 "Robert April"
|
||||
on Mon Apr 29 23:30:58 2019 GMT-8.
|
||||
</p>
|
||||
<table class="menu" border="0" cellspacing="0">
|
||||
<tr><td align="left" valign="top">• <a href="Systems.html#Systems" accesskey="1">Systems</a>:</td><td> </td><td align="left" valign="top">The systems documentation
|
||||
</td></tr>
|
||||
<tr><td align="left" valign="top">• <a href="Files.html#Files" accesskey="2">Files</a>:</td><td> </td><td align="left" valign="top">The files documentation
|
||||
</td></tr>
|
||||
<tr><td align="left" valign="top">• <a href="Packages.html#Packages" accesskey="3">Packages</a>:</td><td> </td><td align="left" valign="top">The packages documentation
|
||||
</td></tr>
|
||||
<tr><td align="left" valign="top">• <a href="Definitions.html#Definitions" accesskey="4">Definitions</a>:</td><td> </td><td align="left" valign="top">The symbols documentation
|
||||
</td></tr>
|
||||
<tr><td align="left" valign="top">• <a href="Indexes.html#Indexes" accesskey="5">Indexes</a>:</td><td> </td><td align="left" valign="top">Concepts, functions, variables and data types
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<hr>
|
||||
<div class="header">
|
||||
<p>
|
||||
Next: <a href="Systems.html#Systems" accesskey="n" rel="next">Systems</a>, Previous: <a href="../dir/index.html" accesskey="p" rel="prev">(dir)</a>, Up: <a href="../dir/index.html" accesskey="u" rel="up">(dir)</a> [<a href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Indexes.html#Indexes" title="Index" rel="index">Index</a>]</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user