diff options
Diffstat (limited to 'lib/collections.h')
-rw-r--r-- | lib/collections.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/collections.h b/lib/collections.h index 8f5a43d..7d78ef9 100644 --- a/lib/collections.h +++ b/lib/collections.h @@ -8,13 +8,13 @@ template<typename T, typename E> concept SequentialCollection = requires(T c) { - { - c.size() - } -> std::integral; - { - c.data() - } -> std::same_as<const E *>; - }; + { + c.size() + } -> std::integral; + { + c.data() + } -> std::same_as<const E *>; +}; template<typename T> concept IterableCollection = std::is_same_v<decltype(std::declval<T>().begin()), decltype(std::declval<T>().end())>; |