[EMAIL PROTECTED] (Austin Hastings) writes:
> >      if (specific() ?? detail1() && detail2() :: general()) {...}
> 
> For some value of "correct" I suppose. Using ??:: within an if/else context
> makes my skin crawl, stylistically. :-(
Ah, then use if!

  if (if(specific()) { detail() } else { general() }) {
      ...
  } else {
      ...
  }
-- 
Complete the following sentence: People *ought* to weigh bricks, cats
and cinnamon in the same units because... - Ian Johnston

Reply via email to