Loyc.Syntax.LNodeExt.MatchesPattern C# (CSharp) Method

MatchesPattern() public static method

public static MatchesPattern ( this candidate, LNode pattern, LNode>.IDictionary &captures ) : bool
candidate this
pattern LNode
captures LNode>.IDictionary
return bool
		public static bool MatchesPattern(this LNode candidate, LNode pattern, out IDictionary<Symbol, LNode> captures)
		{
			VList<LNode> unmatchedAttrs;
			return MatchesPattern(candidate, pattern, out captures, out unmatchedAttrs);
		}

Same methods

LNodeExt::MatchesPattern ( this candidate, LNode pattern, LNode>.IDictionary &captures, VList &unmatchedAttrs ) : bool
LNodeExt::MatchesPattern ( this candidate, LNode pattern, LNode>.MMap &captures, VList &unmatchedAttrs ) : bool