Template Function sequant::canonical_children(TreeNode const&&)¶
Defined in File eval_node_compare.hpp
Function Documentation¶
-
template<typename TreeNode>
std::pair<TreeNode const&, TreeNode const&> sequant::canonical_children(TreeNode const &&n) = delete¶ The result aliases
n'schildren, so a temporary would dangle. (ATreeNode const&¶meter is not a forwarding reference, so this overload takes rvalues only and leaves lvalue calls to the one above.)