Skip to content

Commit 22061eb

Browse files
committed
Update README. Fix import test.
1 parent 25ed835 commit 22061eb

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ _LispKit_ provides support for the following core features, many of which are ba
7272
[`(lispkit object)`](https://github.com/objecthub/swift-lispkit/wiki/LispKit-Object),
7373
`(lispkit clos)`,
7474
[`(lispkit enum)`](https://github.com/objecthub/swift-lispkit/wiki/LispKit-Enum),
75+
`(lispkit comparator)`,
7576
`(lispkit logic)`, `(lispkit iteration)`,
7677
[`(lispkit vector)`](https://github.com/objecthub/swift-lispkit/wiki/LispKit-Vector),
7778
[`(lispkit gvector)`](https://github.com/objecthub/swift-lispkit/wiki/LispKit-Gvector),
@@ -146,6 +147,7 @@ framework:
146147
- [SRFI 161: Unifiable Boxes](https://srfi.schemers.org/srfi-161/srfi-161.html)
147148
- [SRFI 165: The Environment Monad](https://srfi.schemers.org/srfi-165/srfi-165.html)
148149
- [SRFI 173: Hooks](https://srfi.schemers.org/srfi-173/srfi-173.html)
150+
- [SRFI 174: POSIX Timespecs](https://srfi.schemers.org/srfi-174/srfi-174.html)
149151

150152

151153
## Architecture

Sources/LispKit/Resources/Libraries/lispkit/object.sld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@
201201
;; Declarative class interface
202202
(export define-class)
203203

204-
(import (lispkit base))
204+
(import (except (lispkit base) object))
205205

206206
(begin
207207

Sources/LispKit/Resources/Tests/Import.scm

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
(import (lispkit datatype))
3838
(import (lispkit object))
3939
(import (lispkit enum))
40+
(import (lispkit comparator))
4041
(import (lispkit logic))
4142
(import (lispkit iteration))
4243
(import (lispkit set))
@@ -45,6 +46,7 @@
4546
(import (lispkit heap))
4647
(import (lispkit graph))
4748
(import (lispkit wt-tree))
49+
(import (lispkit stream))
4850
(import (lispkit prettify))
4951
(import (lispkit csv))
5052
(import (lispkit json))

0 commit comments

Comments
 (0)