3

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?

Chipa-Chipa
  • 167
  • 5

1 Answers1

3

Use @@ (a.k.a Apply):

And@@{a==1,b==2}

a == 1 && b == 2

Henrik Schumacher
  • 106,770
  • 7
  • 179
  • 309