Re: multi compare

2017-03-16 Thread Hussien via Digitalmars-d-learn
On Friday, 17 March 2017 at 01:27:01 UTC, Adam D. Ruppe wrote: On Friday, 17 March 2017 at 00:39:15 UTC, Hussien wrote: if (x in [a,b,c,..]) import std.algorithm.comparison; x.among(a, b, c); http://dpldocs.info/experimental-docs/std.algorithm.comparison.among.1.html thanks

Re: multi compare

2017-03-16 Thread Adam D. Ruppe via Digitalmars-d-learn
On Friday, 17 March 2017 at 00:39:15 UTC, Hussien wrote: if (x in [a,b,c,..]) import std.algorithm.comparison; x.among(a, b, c); http://dpldocs.info/experimental-docs/std.algorithm.comparison.among.1.html

multi compare

2017-03-16 Thread Hussien via Digitalmars-d-learn
Instead of if (x == a || x == b || x = c || ) is there an easier way stuff like if (x in [a,b,c,..]) doesn't work.