opynsim
Unofficial C++ Documentation
Loading...
Searching...
No Matches
liboscar
concepts
object_representation_byte.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <
liboscar/concepts/same_as_any_of.h
>
4
5
#include <cstddef>
6
7
namespace
osc
8
{
9
// Satisfied if `T` is a a valid representation of one byte of a
10
// C++ object.
11
//
12
// > see: https://en.cppreference.com/w/cpp/language/object#Object_representation_and_value_representation
13
template
<
typename
T>
14
concept
ObjectRepresentationByte
=
SameAsAnyOf<T, unsigned char, std::byte>
;
15
}
osc::ObjectRepresentationByte
Definition
object_representation_byte.h:14
osc::SameAsAnyOf
Definition
same_as_any_of.h:9
osc
Definition
custom_decoration_generator.h:5
same_as_any_of.h
Generated by
1.9.8