Lightweight 0.1.0
|
This HasMany<OtherRecord> represents a simple one-to-many relationship between two records. More...
#include <HasMany.hpp>
Public Types | |
using | ReferencedRecord = OtherRecord |
The record type of the "many" side of the relationship. | |
using | ReferencedRecordList = std::vector< std::shared_ptr< OtherRecord > > |
The list of records on the "many" side of the relationship. | |
using | value_type = OtherRecord |
Record type of the "many" side of the relationship. | |
using | iterator = typename ReferencedRecordList::iterator |
Iterator type for the list of records. | |
using | const_iterator = typename ReferencedRecordList::const_iterator |
Const iterator type for the list of records. | |
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. | |
template<typename Callable > | |
void | Each (Callable const &callable) |
Iterates over the list of records and calls the given callable for each record. | |
ReferencedRecordList & | Emplace (ReferencedRecordList &&records) noexcept |
Emplaces the given list of records. | |
std::size_t | Count () const noexcept |
Retrieves the number of records in this 1-to-many relationship. | |
bool | IsEmpty () const noexcept |
Checks if this 1-to-many relationship is empty. | |
OtherRecord const & | At (std::size_t index) const |
Retrieves the record at the given index. | |
OtherRecord & | At (std::size_t index) |
Retrieves the record at the given index. | |
OtherRecord const & | operator[] (std::size_t index) const |
Retrieves the record at the given index. | |
OtherRecord & | 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 |
constexpr std::weak_ordering | operator<=> (HasMany< OtherRecord > const &other) const noexcept=default |
constexpr bool | operator== (HasMany< OtherRecord > const &other) const noexcept=default |
constexpr bool | operator!= (HasMany< OtherRecord > const &other) const noexcept=default |
void | SetAutoLoader (Loader loader) noexcept |
Used internally to configure on-demand loading of the records. | |
This HasMany<OtherRecord> represents a simple one-to-many relationship between two records.
The HasMany<OtherRecord> is a member of the "one" side of the relationship.
This implemenation of HasMany<OtherRecord>
must have only one BelongsTo
member that points back to this "one" side.
Definition at line 30 of file HasMany.hpp.
using HasMany< OtherRecord >::ReferencedRecord = OtherRecord |
The record type of the "many" side of the relationship.
Definition at line 34 of file HasMany.hpp.
using HasMany< OtherRecord >::ReferencedRecordList = std::vector<std::shared_ptr<OtherRecord> > |
The list of records on the "many" side of the relationship.
Definition at line 37 of file HasMany.hpp.
using HasMany< OtherRecord >::value_type = OtherRecord |
Record type of the "many" side of the relationship.
Definition at line 40 of file HasMany.hpp.
using HasMany< OtherRecord >::iterator = typename ReferencedRecordList::iterator |
Iterator type for the list of records.
Definition at line 43 of file HasMany.hpp.
using HasMany< OtherRecord >::const_iterator = typename ReferencedRecordList::const_iterator |
Const iterator type for the list of records.
Definition at line 46 of file HasMany.hpp.
|
inlinenoexcept |
Retrieves the list of loaded records.
Definition at line 171 of file HasMany.hpp.
|
inlinenoexcept |
Retrieves the list of records as mutable reference.
Definition at line 150 of file HasMany.hpp.
void HasMany< OtherRecord >::Each | ( | Callable const & | callable | ) |
Iterates over the list of records and calls the given callable for each record.
Definition at line 158 of file HasMany.hpp.
|
inlinenoexcept |
Emplaces the given list of records.
Definition at line 142 of file HasMany.hpp.
|
inlinenoexcept |
Retrieves the number of records in this 1-to-many relationship.
Definition at line 179 of file HasMany.hpp.
|
inlinenoexcept |
Checks if this 1-to-many relationship is empty.
Definition at line 191 of file HasMany.hpp.
|
inline |
Retrieves the record at the given index.
index | The index of the record to retrieve. |
Definition at line 197 of file HasMany.hpp.
|
inline |
Retrieves the record at the given index.
index | The index of the record to retrieve. |
Definition at line 204 of file HasMany.hpp.
|
inline |
Retrieves the record at the given index.
index | The index of the record to retrieve. |
Definition at line 211 of file HasMany.hpp.
|
inline |
Retrieves the record at the given index.
index | The index of the record to retrieve. |
Definition at line 218 of file HasMany.hpp.
|
inlinenoexcept |
Definition at line 225 of file HasMany.hpp.
|
inlinenoexcept |
Definition at line 232 of file HasMany.hpp.
|
inlinenoexcept |
Definition at line 239 of file HasMany.hpp.
|
inlinenoexcept |
Definition at line 246 of file HasMany.hpp.
|
inlinenoexcept |
Used internally to configure on-demand loading of the records.
Definition at line 129 of file HasMany.hpp.
Referenced by DataMapper::ConfigureRelationAutoLoading().