Hi,
I guess there is a module for this, and probably a term, but since I
don't know the term - I can't serach for a module for it ....
I am looking for a module to handle pairs of opening/closing delimiters
that can be in any depth, for example:
Class A
{
struct B {
int I;
struct C {
int j;
} c;
} b;
};
Or : 5 * ( ( (2+8) * 3) *2)
Yossi