test::class_1 class
#include <src/code.h>

A class.

More info.

Public types

using public_typedef = int
A public typedef.

Public static variables

static std::byte public_static_variable constexpr
A public static variable.

Public static functions

static auto public_static_function() -> struct_1 constexpr
A public static function.

Public functions

auto public_function() -> bool
A public function.

Public variables

bool public_variable
A public variable.

Protected types

using protected_typedef = int
A protected typedef.

Protected static functions

static auto protected_static_function() -> bool constexpr
A protected static function.

Protected functions

auto protected_function() -> bool
A protected function.

Protected static variables

static bool protected_static_variable constexpr
A protected static variable.

Protected variables

bool protected_variable
A protected variable.

Friends

void a_friend_function()
A function that appears as a friend to a test::class_1.
void another_friend_function()
A friend function defined entirely in a class.

Typedef documentation

using test::class_1::public_typedef = int

A public typedef.

More info.

using test::class_1::protected_typedef = int protected

A protected typedef.

More info.

Function documentation

static struct_1 test::class_1::public_static_function() constexpr

A public static function.

More info.

bool test::class_1::public_function()

A public function.

More info.

static bool test::class_1::protected_static_function() protected constexpr

A protected static function.

More info.

bool test::class_1::protected_function() protected

A protected function.

More info.

void a_friend_function()

A function that appears as a friend to a test::class_1.

More info.

void another_friend_function()

A friend function defined entirely in a class.

More info.

Variable documentation

static std::byte test::class_1::public_static_variable constexpr

A public static variable.

More info.

bool test::class_1::public_variable

A public variable.

More info.

static bool test::class_1::protected_static_variable protected constexpr

A protected static variable.

More info.

bool test::class_1::protected_variable protected

A protected variable.

More info.