Hi all,
The question is as follows. A pair of functions which lazily construct an object and one which returns nullptr if the object had not already been constructed can be named:
StyleResolver* styleResolver();
StyleResolver& ensureStyleResolver();
or:
StyleResolver* styleResolverIfExists();
StyleResolver& styleResolver();
Which one should we use?
- R. Niwa