Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
0d8a8cec
Commit
0d8a8cec
authored
32 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Added ``:state :read-only'' to the various extendable collection classes.
parent
e5a7a7a0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/class.lisp
+10
-5
10 additions, 5 deletions
code/class.lisp
with
10 additions
and
5 deletions
code/class.lisp
+
10
−
5
View file @
0d8a8cec
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
;;;
(
ext:file-comment
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/class.lisp,v 1.2
0
1993/04/04 1
0:06:09
wlott Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/class.lisp,v 1.2
1
1993/04/04 1
2:50:50
wlott Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -424,19 +424,22 @@
...
@@ -424,19 +424,22 @@
:state
:read-only
)
:state
:read-only
)
(
funcallable-instance
:inherits
(
function
)
:state
:read-only
)
(
funcallable-instance
:inherits
(
function
)
:state
:read-only
)
(
collection
:hierarchical
nil
)
(
collection
:hierarchical
nil
:state
:read-only
)
(
explicit-key-collection
:inherits
(
collection
))
(
explicit-key-collection
:inherits
(
collection
)
:state
:read-only
)
(
mutable-collection
:inherits
(
collection
))
(
mutable-collection
:inherits
(
collection
)
:state
:read-only
)
(
generic-sequence
:inherits
(
collection
))
(
generic-sequence
:inherits
(
collection
)
:state
:read-only
)
(
mutable-explicit-key-collection
(
mutable-explicit-key-collection
:state
:read-only
:inherits
(
explicit-key-collection
mutable-collection
collection
))
:inherits
(
explicit-key-collection
mutable-collection
collection
))
(
mutable-sequence
(
mutable-sequence
:state
:read-only
:inherits
(
mutable-collection
generic-sequence
collection
))
:inherits
(
mutable-collection
generic-sequence
collection
))
(
sequence
(
sequence
:translation
(
or
cons
(
member
nil
)
vector
)
:translation
(
or
cons
(
member
nil
)
vector
)
:inherits
(
mutable-sequence
mutable-collection
generic-sequence
:inherits
(
mutable-sequence
mutable-collection
generic-sequence
collection
))
collection
))
(
generic-array
(
generic-array
:state
:read-only
:inherits
(
mutable-explicit-key-collection
explicit-key-collection
:inherits
(
mutable-explicit-key-collection
explicit-key-collection
mutable-collection
collection
))
mutable-collection
collection
))
(
array
(
array
...
@@ -448,6 +451,7 @@
...
@@ -448,6 +451,7 @@
:inherits
(
array
generic-array
mutable-explicit-key-collection
:inherits
(
array
generic-array
mutable-explicit-key-collection
explicit-key-collection
mutable-collection
collection
))
explicit-key-collection
mutable-collection
collection
))
(
generic-vector
(
generic-vector
:state
:read-only
:inherits
(
generic-array
mutable-explicit-key-collection
:inherits
(
generic-array
mutable-explicit-key-collection
explicit-key-collection
mutable-sequence
explicit-key-collection
mutable-sequence
mutable-collection
generic-sequence
collection
))
mutable-collection
generic-sequence
collection
))
...
@@ -525,6 +529,7 @@
...
@@ -525,6 +529,7 @@
mutable-explicit-key-collection
explicit-key-collection
mutable-explicit-key-collection
explicit-key-collection
mutable-collection
collection
))
mutable-collection
collection
))
(
generic-string
(
generic-string
:state
:read-only
:inherits
(
mutable-sequence
mutable-collection
generic-sequence
:inherits
(
mutable-sequence
mutable-collection
generic-sequence
collection
))
collection
))
(
string
(
string
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment