Lightweight 0.1.0
|
This API represents a many-to-many relationship between two records through a third record. More...
#include <HasManyThrough.hpp>
Public Types | |
using | ThroughRecord = ThroughRecordT |
The record type of the "through" side of the relationship. | |
using | ReferencedRecord = ReferencedRecordT |
The record type of the "many" side of the relationship. | |
using | ReferencedRecordList = std::vector< std::shared_ptr< ReferencedRecord > > |
The list of records on the "many" side of the relationship. | |
using | value_type = ReferencedRecord |
using | iterator = typename ReferencedRecordList::iterator |
using | const_iterator = typename ReferencedRecordList::const_iterator |
Public Member Functions | |
ReferencedRecordList const & | All () const noexcept |
Retrieves the list of loaded records. | |
ReferencedRecordList & | All () noexcept |
Retrieves the list of records as mutable reference. | |
ReferencedRecordList & | Emplace (ReferencedRecordList &&records) noexcept |
Emplaces the given list of records into this relationship. | |
std::size_t | Count () const |
Retrieves the number of records in this relationship. | |
std::size_t | IsEmpty () const |
Checks if this relationship is empty. | |
ReferencedRecord const & | At (std::size_t index) const |
Retrieves the record at the given index. | |
ReferencedRecord & | At (std::size_t index) |
Retrieves the record at the given index. | |
ReferencedRecord const & | operator[] (std::size_t index) const |
Retrieves the record at the given index. | |
ReferencedRecord & | operator[] (std::size_t index) |
Retrieves the record at the given index. | |
iterator | begin () noexcept |
iterator | end () noexcept |
const_iterator | begin () const noexcept |
const_iterator | end () const noexcept |
std::weak_ordering | operator<=> (HasManyThrough const &other) const noexcept=default |
void | SetAutoLoader (Loader loader) noexcept |
Used internally to configure on-demand loading of the records. | |
void | Reload () |
Reloads the records from the database. | |
template<typename Callable > | |
void | Each (Callable const &callable) |
Iterates over all records in this relationship. | |
This API represents a many-to-many relationship between two records through a third record.
Definition at line 21 of file HasManyThrough.hpp.
using HasManyThrough< ReferencedRecordT, ThroughRecordT >::ThroughRecord = ThroughRecordT |
The record type of the "through" side of the relationship.
Definition at line 25 of file HasManyThrough.hpp.
using HasManyThrough< ReferencedRecordT, ThroughRecordT >::ReferencedRecord = ReferencedRecordT |
The record type of the "many" side of the relationship.
Definition at line 28 of file HasManyThrough.hpp.
using HasManyThrough< ReferencedRecordT, ThroughRecordT >::ReferencedRecordList = std::vector<std::shared_ptr<ReferencedRecord> > |
The list of records on the "many" side of the relationship.
Definition at line 31 of file HasManyThrough.hpp.
using HasManyThrough< ReferencedRecordT, ThroughRecordT >::value_type = ReferencedRecord |
Definition at line 33 of file HasManyThrough.hpp.
using HasManyThrough< ReferencedRecordT, ThroughRecordT >::iterator = typename ReferencedRecordList::iterator |
Definition at line 34 of file HasManyThrough.hpp.
using HasManyThrough< ReferencedRecordT, ThroughRecordT >::const_iterator = typename ReferencedRecordList::const_iterator |
Definition at line 35 of file HasManyThrough.hpp.
|
noexcept |
Retrieves the list of loaded records.
Definition at line 150 of file HasManyThrough.hpp.
Referenced by HasManyThrough< ReferencedRecordT, ThroughRecordT >::Each().
|
noexcept |
Retrieves the list of records as mutable reference.
Definition at line 160 of file HasManyThrough.hpp.
|
noexcept |
Emplaces the given list of records into this relationship.
Definition at line 170 of file HasManyThrough.hpp.
std::size_t HasManyThrough< ReferencedRecordT, ThroughRecordT >::Count | ( | ) | const |
Retrieves the number of records in this relationship.
Definition at line 178 of file HasManyThrough.hpp.
std::size_t HasManyThrough< ReferencedRecordT, ThroughRecordT >::IsEmpty | ( | ) | const |
Checks if this relationship is empty.
Definition at line 190 of file HasManyThrough.hpp.
HasManyThrough< ReferencedRecordT, ThroughRecordT >::ReferencedRecord const & HasManyThrough< ReferencedRecordT, ThroughRecordT >::At | ( | std::size_t | index | ) | const |
Retrieves the record at the given index.
index | The index of the record to retrieve. |
Definition at line 198 of file HasManyThrough.hpp.
HasManyThrough< ReferencedRecordT, ThroughRecordT >::ReferencedRecord & HasManyThrough< ReferencedRecordT, ThroughRecordT >::At | ( | std::size_t | index | ) |
Retrieves the record at the given index.
index | The index of the record to retrieve. |
Definition at line 204 of file HasManyThrough.hpp.
HasManyThrough< ReferencedRecordT, ThroughRecordT >::ReferencedRecord const & HasManyThrough< ReferencedRecordT, ThroughRecordT >::operator[] | ( | std::size_t | index | ) | const |
Retrieves the record at the given index.
index | The index of the record to retrieve. |
Definition at line 213 of file HasManyThrough.hpp.
HasManyThrough< ReferencedRecordT, ThroughRecordT >::ReferencedRecord & HasManyThrough< ReferencedRecordT, ThroughRecordT >::operator[] | ( | std::size_t | index | ) |
Retrieves the record at the given index.
index | The index of the record to retrieve. |
Definition at line 219 of file HasManyThrough.hpp.
|
noexcept |
Definition at line 227 of file HasManyThrough.hpp.
|
noexcept |
Definition at line 234 of file HasManyThrough.hpp.
|
noexcept |
Definition at line 241 of file HasManyThrough.hpp.
|
noexcept |
Definition at line 248 of file HasManyThrough.hpp.
|
inlinenoexcept |
Used internally to configure on-demand loading of the records.
Definition at line 95 of file HasManyThrough.hpp.
Referenced by DataMapper::ConfigureRelationAutoLoading().
|
inline |
Reloads the records from the database.
Definition at line 101 of file HasManyThrough.hpp.
|
inline |
Iterates over all records in this relationship.
callable | The callable to invoke for each record. |
Definition at line 114 of file HasManyThrough.hpp.
References HasManyThrough< ReferencedRecordT, ThroughRecordT >::All().