Exemple #1
0
        static public bool EnthaltAst(
            this UINodeInfoInTree suuceWurzel,
            UINodeInfoInTree node)
        {
            if (null == node)
            {
                return(false);
            }

            return(suuceWurzel?.AstEnthalteInBaum(node, zuZerleegende => zuZerleegende.ListChild) ?? false);
        }
Exemple #2
0
 static public bool EnthaltAstMitHerkunftAdrese(
     this UINodeInfoInTree suuceWurzel,
     Int64 astHerkunftAdrese) =>
 suuceWurzel?.AstEnthalteInBaum((kandidaatAst) => kandidaatAst?.PyObjAddress == astHerkunftAdrese, zuZerleegende => zuZerleegende.ListChild) ?? false;