Evo C++ Library v0.5.1
Public Types | Static Public Attributes | List of all members
IsByteCopyType< T > Struct Template Reference

#include <evo/meta.h>

Inheritance diagram for IsByteCopyType< T >:
Inheritance graph
[legend]

Detailed Description

template<class T>
struct evo::IsByteCopyType< T >

Check if type is a ByteCopy type.

Value member holds result.

Template Parameters
TType to check
Example
struct Foo { };
struct Bar { };
bool b1 = IsByteCopyType<char>::value; // true
bool b2 = IsByteCopyType<Foo*>::value; // true
bool b3 = IsByteCopyType<Foo>::value; // true
bool b4 = IsByteCopyType<Bar*>::value; // true
bool b5 = IsByteCopyType<Bar>::value; // false

Public Types

typedef evo::StaticBool< val > Type
 This type. More...
 

Static Public Attributes

static const bool value
 Result value. More...
 

Member Typedef Documentation

◆ Type

typedef evo::StaticBool<val> Type
inherited

This type.

Member Data Documentation

◆ value

const bool value
staticinherited

Result value.


The documentation for this struct was generated from the following file: