I have a huge list of the form
{a==1,b==2}
I want to get the expression like
a==1&&b==2
How is it possible to do that?
Use @@ (a.k.a Apply):
@@
Apply
And@@{a==1,b==2}
a == 1 && b == 2