cl-cookbook
cl-cookbook copied to clipboard
The Common Lisp Cookbook
Hello, The test system is called `mitogrator/test` instead of `my-system/test`. An overview, I presume? I also think `asdf:test-system` should be mentioned; without it, I didn't know how to actually trigger...
https://github.com/LispCookbook/cl-cookbook/blob/fd22cd81b5e9f29d1c65e51d80a568e897552dad/numbers.md#L71-L82 The type `bignum` is specified to be exactly `(and integer (not fixnum))`, which, along with the first line of this paragraph, would then mean that `1/2` is not a...
As the title suggest, also from [bendudson/array-operations](https://github.com/bendudson/array-operations): > The array-operations library is now maintained by @Symbolics as part of the [Lisp-Stat](https://github.com/Lisp-Stat/) project. The new repository is https://github.com/Lisp-Stat/array-operations. I think it...
Hi, is it okay if I fix typos and similar minutiae as I read through the cookbook, and file the resulting PRs against this bug?
`uiop define-package` is more flexible with additional clauses and more convenient during development (e.g. when symbols change). I want to add some examples in the packages page for `uiop:define-package`. Currently...
Currently it doesn't really state what the consequences and usecases of `:displaced-to`, `:fill-pointer` or `:adjustable` are or the type safety implications of `:element-type`.
from https://stackoverflow.com/questions/78550959/how-can-i-lazily-traverse-a-directory-in-lisp
applies to #540
The [current example](https://lispcookbook.github.io/cl-cookbook/functions.html#setf-functions) did not help me approach custom places. Issues include: - `hello` is not an "accessor" of anything, therefore `(setf hello)` doesn't make much sense to begin with....
Hi. I think a chapter on streams would be a good addition. The "Input/Output" section contains some stuff related to streams, but there's more to cover. I'm creating this issue...