Ruby
3.4.0dev (2024-12-06 revision 892c46283a5ea4179500d951c9d4866c0051f27b)
|
Represents the region of a capture group. More...
#include <rmatch.h>
Data Fields | |
long | beg |
Beginning of a group. More... | |
long | end |
End of a group. More... | |
Represents the region of a capture group.
This is basically for caching purpose. re_registers have similar concepts (beg
and end
) but they are in ptrdiff_t*
. In order for us to implement MatchData#offset
that info has to be converted to offset integers. This is the struct to hold such things.