ECSTASY
All in the name
Loading...
Searching...
No Matches
ecstasy::IsContainerStorage Concept Reference

Concept to check if a storage is a container storage. More...

#include <StorageConcepts.hpp>

Concept definition

template<typename S>
concept ecstasy::IsContainerStorage = requires() {
requires IsStorage<S>;
typename S::Component::value_type;
}
Concept to check if a storage is a container storage.
Concept to check if a type is a storage.

Detailed Description

Concept to check if a storage is a container storage.

(i.e. has a value_type member type like std::vector)

Template Parameters
SStorage type to check.
Author
Andréas Leroux (andre.nosp@m.as.l.nosp@m.eroux.nosp@m.@epi.nosp@m.tech..nosp@m.eu)
Since
1.0.0 (2024-04-22)

Definition at line 118 of file StorageConcepts.hpp.