Peg.Base.PegCharParser.Into C# (CSharp) Method

Into() public method

public Into ( Matcher toMatch, PegBegEnd &begEnd ) : bool
toMatch Matcher
begEnd PegBegEnd
return bool
        public bool Into(Matcher toMatch,out PegBegEnd begEnd)
        {
            begEnd.posBeg_ = pos_;
            bool bMatches = toMatch();
            begEnd.posEnd_ = pos_;
            return bMatches;
        }
        public bool Into(Matcher toMatch,out int into)

Same methods

PegCharParser::Into ( Matcher toMatch, double &into ) : bool
PegCharParser::Into ( Matcher toMatch, int &into ) : bool
PegCharParser::Into ( Matcher toMatch, string &into ) : bool