plragde
2020-7-12 21:27:15

How do I find out where in the distribution or source code a particular function or feature is implemented? I’m specifically at this point interested in the regexp stuff, but I’d like to know in general. Thanks.


soegaard2
2020-7-12 21:29:06

This is the new regexp implementation for Racket CS: https://github.com/racket/racket/tree/master/racket/src/regexp The old one is in C, I believe.


soegaard2
2020-7-12 21:30:46

If the feature you are looking for is a primitive then go http://github.com/racket/racket\|github.com/racket/racket and use Github search to find the definition. For functions/structures defined in Racket you can use DrRacket or racket-mode to find the definition.


plragde
2020-7-12 21:40:17

Thanks!


william.macready
2020-7-13 03:20:00

@william.macready has joined the channel