Class statusboost::mpi::status — Contains information about a message that has been or can be received. Synopsisclass status { public: // construct/copy/destruct status(); status(MPI_Status const &); // public member functions int source() const; int tag() const; int error() const; bool cancelled() const; template<typename T> optional< int > count() const; operator MPI_Status &() ; operator const MPI_Status &() const; mutable int m_count; }; DescriptionThis structure contains status information about messages that have been received (with
|
Returns: |
the number of |
operator MPI_Status &() ;
References the underlying MPI_Status
operator const MPI_Status &() const;
References the underlying MPI_Status