Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
fare-utils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
François-René Rideau
fare-utils
Commits
aa508637
Commit
aa508637
authored
12 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
Classy interfaces, with an associated class.
parent
796307e3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
interface/interface.lisp
+14
-0
14 additions, 0 deletions
interface/interface.lisp
with
14 additions
and
0 deletions
interface/interface.lisp
+
14
−
0
View file @
aa508637
...
...
@@ -15,12 +15,14 @@
;;; Classes
#:<interface>
#:<type>
#:<classy>
;;; General purpose gfs
#:check-invariant
#:make
#:update
#:base-interface
#:instantiate
))
(
in-package
:interface
)
...
...
@@ -55,3 +57,15 @@ On success the OBJECT itself is returned. On failure an error is signalled."))
(
defgeneric
base-interface
(
<interface>
)
(
:documentation
"from the parametric variant of a mixin, extract the base interface"
))
;;; Classy Interface (i.e. has some associated class)
(
defclass
<classy>
(
<interface>
)
((
class
:reader
interface-class
:allocation
:class
)))
(
defgeneric
instantiate
(
<interface>
&key
&allow-other-keys
))
(
defmethod
instantiate
((
i
<classy>
)
&rest
keys
&key
&allow-other-keys
)
(
apply
'make-instance
(
interface-class
i
)
keys
))
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