Make unwrapping conversion operators constant (PR #577)

XMLWordPrintableJSON

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

      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:
              J Rassi (Inactive)
              Reporter:
              David Golden
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

                Created:
                Updated:
                Resolved: