Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ReduceGroup()

RegexNode System.Text.RegularExpressions.RegexNode.ReduceGroup ( )
inlineprivate

Definition at line 279 of file RegexNode.cs.

280 {
281 RegexNode regexNode = this;
282 while (regexNode.Type == 29)
283 {
284 regexNode = regexNode.Child(0);
285 }
286 return regexNode;
287 }
RegexNode(int type, RegexOptions options)
Definition RegexNode.cs:23

Referenced by System.Text.RegularExpressions.RegexNode.Reduce().