Question

Example:

visit(Sometree)
{
    case a:someNodeA(_,_): HandleNodeA(a);
    default:               Handle(???);
}

So i want to handle all the other cases by using default, how can I do this?

Was it helpful?

Solution

visit does not support default because it needs something specific to bind while visiting. Instead you can write a pattern that matches truly everything. For example:

visit(sometree) {
   case node x : handleAllTreeLikeThings(x);
   case str y(value x, value y) : handleAllBinaryTrees(y, x, y);
   case value x : handleAllValuesWhatsoever(x);
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top