Agregar una matriz BSON a un documento MongoDB 3.2 y extraer los valores (MongoCXX 3.2) (C ++ 11)

    // The document I want to add data to and extract it back from c++
           bsoncxx::builder::stream::document data_builder,

           // I want to try and save this array in my document , as I want to  populate it later
           bsoncxx::builder::stream::array mybsonarr;
           for(float i = 0 ; i < 5 ; i = i + 0.1f){
             mybsonarr << i;
           }


// Now this line Throws an error 
data_builder << "_id" << 5 << "my_array" << &mybsonarr;

Entonces, ¿cómo puedo agregar mi matriz y también cómo puedo volver a leer mi matriz flotante en una matriz o en un vector?

Respuestas a la pregunta(1)

Su respuesta a la pregunta