Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
with-contexts
with-contexts
Commits
9ea84c4f
Commit
9ea84c4f
authored
Dec 13, 2020
by
Marco Antoniotti
💬
Browse files
Added some doc strings.
parent
2682ccb1
Changes
1
Hide whitespace changes
Inline
Side-by-side
contexts.lisp
View file @
9ea84c4f
...
...
@@ -16,10 +16,14 @@ shuld not be directly instantiated."))
(
defgeneric
is-context
(
x
)
(
:method
((
c
context
))
t
)
(
:method
((
c
t
))
nil
))
(
:method
((
c
t
))
nil
)
(
:documentation
"Returns T if the argument X is a CONTEXT; NIL otherwise."
))
(
defun
context-p
(
x
)
(
is-context
x
))
(
defun
context-p
(
x
)
"Returns T if the argument X is a CONTEXT; NIL otherwise."
(
is-context
x
))
;;;; end of file -- with-cl.lisp
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment