xtd 0.2.0
Loading...
Searching...
No Matches
formatable.hpp
Go to the documentation of this file.
1
4#pragma once
6#include "iformatable.hpp"
7#include "raw_type.hpp"
8#include <concepts>
9
11namespace xtd {
12 // Since Doxygen does not work properly with the C++ concept, the documentation for this concept is declared in xtd/formatable_.hpp
13 template<typename value_t>
14 concept formatable =
15 std::derived_from<xtd::raw_type<value_t>, xtd::iformatable> ||
17}
Provides functionality to format the value of an object into a string representation.
Definition iformatable.hpp:42
Definition formatable.hpp:14
Definition stream_insertable.hpp:13
Contains xtd::iformatable interface.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Contains xtd::raw_type alias.
Contains xtd::stream_insertable concept.