Phoebe Goldman

Results 19 issues of Phoebe Goldman

When compiling (via SLY's `C-c C-k sly-compile-and-load-file` or ASDF's `load-system`, both of which I believe invoke `compile-file`), a file containing: ``` (defgeneric foo (bar)) (defmethod foo ((bar number)) (1+ bar))...

I've tested that it behaves the way I expect on my SBCL-macos-arm64 system, but I don't have access to Lispworks, Windows, or a bunch of other combinations, so I'd greatly...

It's Java's `StringBuilder`. But in Coalton. After thinking about #635 , I realized that it would be nice to have a way for the library to implement efficient string-wrangling operations...

Useful for interactive use: this provides me a way to see the error, go "crap, i forgot to install MPFR," install it, and tell coalton "okay it's there now, look...

A long-awaited interface for reading from and writing to character streams in Coalton! Features: - `Input` and `Output` types which wrap `cl:stream` - `Show` typeclass for printing stuff to `Output`...

You can now do e.g. `(copy-instance SOME-BINARY-CLASSICAL-INSTRUCTION :left NEW-LEFT-OPERAND)` to make a copy of `SOME-BINARY-CLASSICAL-INSTRUCTION` that has its `left` slot overwritten with `NEW-LEFT-OPERAND`. I suspect there are plenty of places...

Quiet a few SBCL style warnings, mostly related to forward-referencing struct accessors that would otherwise be inlined.

The Gitlab CI pipeline was failing to load libcrypto (libssl-dev seemed not to be installed) and libffi (wanted an old version). With a little luck, this change installs them in...

The ASDF system `shop3/test` should depend on a `validate` binary as a component, and include a recipe to build it from the shop3 repo, obeying output filename translations to put...