Jacqueline Firth
Jacqueline Firth
Can't support Alpine images yet because of musl libc problems in Racket's core. Alpine images might work once Racket moves to Chez Scheme though.
Docker now supports multi-stage builds to avoid putting build-only intermediate files and executables in the final output image. Might be worth investigating how that can help here?
Is integration with the [racket langserver](github.com/jeapostrophe/racket-langserver/) a goal? I'd really like for the langserver to come with autoformatting support out of the box.
Given a structure id, it should be possible to construct an isomoprhism between struct instances of that type and vectors ``` racket > (struct position (x y)) > (lens-view (struct->vector-lens...
Should accept a base and return an isomoprhism lens ``` racket > (lens-view (positive-integer->digits-lens 10) 123) ; base 10 '(1 2 3) > (lens-view (positive-integer->digits-lens 2) 123) ; base 2...