[Development] Views

André Pönitz apoenitz at t-online.de
Mon May 20 22:18:04 CEST 2019


On Fri, May 17, 2019 at 10:17:10AM +0200, Mutz, Marc via Development wrote:
> [...] There is no readability difference between the use of a Qt container and
> that of an STL container.

Exhibit A:

     foo().contains(x)


Exhibit B:

     {
         ... container = foo();
         std::find(container.begin(), container.end(), x) != container.end();
     }


Andre'





More information about the Development mailing list