Doug Coleman
Doug Coleman
### Data Structures - [ ] Red black binary trees (see https://github.com/factor/factor/issues/1753) - can use with multisets (choice of avl tree or red-black tree) - [ ] [Zip trees](https://arxiv.org/pdf/1806.06726.pdf) (like...
I noticed that unless I added the ``flush`` at the end then the lint-failure messages don't get printed. We could always flush stdout on ``exit``? Related to #1918 kind of....
I forget if this is in basis/ or extra/, would be nice to see.
Kind of spammy and pointless. ```factor USING: prettyprint sequences strings ; "go" "ing" append . ``` Set the `parser-quiet?` variable to `f`. I wanted to use `with-variable-off` but it got...
- [ ] Factor itself - [ ] new parser - [ ] efficient exceptions with stack unwinding instead of callcc - [ ] compiler support for full-width integers for...
### PRs - https://github.com/factor/factor/pulls ### TAGS - https://github.com/factor/factor/labels/first-time - https://github.com/factor/factor/labels/startup - https://github.com/factor/factor/labels/core-features Rendering - https://github.com/factor/factor/labels/rendering - https://github.com/factor/factor/labels/dark-mode - https://github.com/factor/factor/labels/retina - https://github.com/factor/factor/labels/ui-text - https://github.com/factor/factor/labels/pixels - https://github.com/factor/factor/labels/reloading - https://github.com/factor/factor/labels/deploy Stuff - https://github.com/factor/factor/labels/patch...
…warnings left. Work in progress, this seems like a monumental undertaking for questionable gain. There are a couple of things I might commit separately, like a stray semi-colon. Any thoughts...
In the first line, we sometimes try to get `hWnd>>` from `f`. I don't know what causes this. ``` M: windows-ui-backend (fullscreen?) handle>> hWnd>> [ hwnd>RECT ] [ fullscreen-RECT ]...
Macros cache their expansions with memoize and as a result the state is not always recreated which leads to state reuse between calls. ```factor MACRO: stack-filter ( n quot: (...
``` ! old [ 10 ] [ 0 '[ 10 [| A | A _ + ] ] call . ] unit-test ! 2022 [ 10 ] [ 0 '[...