op(box(x)) --> box, but is(op(box(x)) = box) --> false.



On 11/5/2011 5:10 PM, David R Stoutemyer wrote:
> op(box(x)) -->  box, but is(op(box(x)) = box) -->  false.
>
> Also is(op(box(x)) = 'box) -->  false,
> and is(op(box(x)) = "box") -->  false.
>
> How can I programmatically detect that op(expression) is box?
> _______________________________________________
>
try is(op(box(x))=?mbox)

RJF