IceShard
1
A personal game engine project, with development focused on 2D/2.5D games.
Toggle main menu visibility
Loading...
Searching...
No Matches
ice
concepts
IterableContainer
ice::concepts::IterableContainer Concept Reference
#include <
ice/container/container_concepts.hxx
>
Concept definition
template
<
typename
T>
concept
IterableContainer
=
ice::concepts::Container<T>
&&
requires
(T t) {
{ t.begin() } -> std::convertible_to<ice::container::Iterator<T>>;
{ t.end() } -> std::convertible_to<ice::container::Iterator<T>>;
}
ice::concepts::Container
Definition
container_concepts.hxx:28
ice::concepts::IterableContainer
Definition
container_concepts.hxx:182
Generated by
1.18.0