Ruby 3.1.3p185 (2022-11-24 revision 1a6b16756e0ba6b95ab71a441357ed5484e33498)
Data Fields
rmatch_offset Struct Reference

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...
 

Detailed Description

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.

Definition at line 65 of file rmatch.h.

Field Documentation

◆ beg

long rmatch_offset::beg

Beginning of a group.

Definition at line 66 of file rmatch.h.

◆ end

long rmatch_offset::end

End of a group.

Definition at line 67 of file rmatch.h.


The documentation for this struct was generated from the following file: