mirror of
https://github.com/WerWolv/ImHex-Patterns.git
synced 2026-03-30 21:05:55 -05:00
includes/std: Added first set of documentation to the std library
This commit is contained in:
@@ -1,7 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
/*!
|
||||
The array library contains various helper functions and types to make
|
||||
it easier to work with Arrays.
|
||||
*/
|
||||
|
||||
namespace std {
|
||||
|
||||
/**
|
||||
Simple one dimensional array wrapper
|
||||
@tparam T The array types
|
||||
@tparam Size Size of the array
|
||||
*/
|
||||
struct Array<T, auto Size> {
|
||||
T data[Size] [[inline]];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user