tyre icon indicating copy to clipboard operation
tyre copied to clipboard

Typed Regular Expressions

Results 8 tyre issues
Sort by recently updated
recently updated
newest added

The goal is more or less to solve #1, it includes #21 1. Functorize the core of the library 2. Extract the backend-agnostic part into a new library 3. Add...

This time, I tried something a bit more principled and careful. So far, it just implements a new module without changing the default. The implementation passes all the tests and...

This would be nice. In particular, it may allow to implement the whole thing on top of native javascript regex (which are probably faster when used in javascript).

Got stuck because of the limitation with macros/side effects This was quite annoying to write, especially due to all the annoyances around the module system and declarations. cc @OlivierNicole

It could be possible to improves `Tyre.rep` by adding a `~min` and `~max` optional arguments, similar to `Re.repn`. The case where `max` is provided could be optimized to avoid reparsing...

Maybe it makes sense to just expose the modifier function? Seems like a standard lifting procedure.

Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. Release notes Sourced from actions/checkout's releases. v6.0.0 What's Changed Update README to include Node.js 24 support details and requirements by @​salmanmkc in actions/checkout#2248 Persist...

dependencies
github_actions

I love this library, this really seems like the right way to do regexp. However, I had a usecase where I needed to do a search-and-replace, and I found no...