Uploaded image for project: 'C++ Driver'
  1. C++ Driver
  2. CXX-1159

Make unwrapping conversion operators constant (PR #577)

    • Type: Icon: New Feature New Feature
    • Resolution: Done
    • Priority: Icon: Major - P3 Major - P3
    • 3.2.0-rc0
    • Affects Version/s: None
    • Component/s: API
    • Labels:

      Tracking ticket for PR #577

      We made conversion operators constant for bsoncxx types to make it possible to write like this:
      
      const bsoncxx::types::value& value{ ... }; // some value extracted from a document element
      bsoncxx::stdx::string_view str_view{ value.get_utf8() };
      
      Without const qualifier I have to use intermediate non-constant variable:
      
      bsoncxx::types::b_utf8 utf8{ value.get_utf8() };
      bsoncxx::stdx::string_view str_view{ utf8 };
      

            Assignee:
            rassi J Rassi
            Reporter:
            david.golden@mongodb.com David Golden
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: