
Do you mean from slack ?

I created a ‘watching-github’ channel and used /github subscribe racket/drracket

Is there a way of using data/heap
in #lang typed/racket
?

@chasets has joined the channel

@stefan.kruger try require/typed

Is there a regex library that uses S-expression rather than string, but for matching strings? Ideally, it should be first class value and also matchable.

There’s * automata/re
which works on lists, not strings: https://docs.racket-lang.org/automata/index.html#(part._re) * parser-tools/lex-sre
which works on input-ports, not strings: https://docs.racket-lang.org/parser-tools/Lexers.html#(mod-path._parser-tools%2Flex-sre) * br-parser-tools/lex-sre
which similarly works on input-ports: https://docs.racket-lang.org/br-parser-tools/Lexers.html#(mod-path._br-parser-tools%2Flex-sre)
I don’t know if there’s anything else or not

note that converting strings to ports is easy, with open-input-string

Thanks. Backref is not supported in these, correct?

(and also lookahead/lookbehind)

@robby How did you handle naming conflicts from mixins in the gui system?

(Provided that there was naming conflicts anyway.)

Never name two different methods the same name.

Lol, I see.

Thanks anyway.