public static bool IsPreSubTaskNode(this GraphNode <Key, FormNode> node, out PreSubTaskFormNode value) { value = null; if (!GraphNodePredicates.IsPreSubTaskNode(node)) { return(false); } value = (PreSubTaskFormNode)node.Value; return(true); }
public static bool IsPreSubTaskNode(this GraphNode <Key, FormNode> node) => GraphNodePredicates.IsPreSubTaskNode(node);