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 {
32 template<class value_t>
33 concept formatable =
34 std::derived_from<xtd::raw_type<value_t>, xtd::iformatable> ||
36}
Provides functionality to format the value of an object into a string representation.
Definition iformatable.hpp:42
Concept formatable.
Definition formatable.hpp:33
Concept stream_insertable.
Definition stream_insertable.hpp:30
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.