mirror of
https://github.com/WerWolv/ImHex-Patterns.git
synced 2026-03-28 15:57:02 -05:00
docs: fix some spelling errors Related issue: https://github.com/WerWolv/ImHex/issues/1139
59 lines
1.6 KiB
Rust
59 lines
1.6 KiB
Rust
#pragma once
|
|
|
|
import std.io;
|
|
|
|
/*!
|
|
Basic helper functions
|
|
*/
|
|
|
|
namespace auto std {
|
|
|
|
/**
|
|
Asserts that a given value is true. If it's not, abort evaluation and print the given message to the console
|
|
@param condition The condition that is required to be true
|
|
@param message The message to print in case the assertion doesn't hold
|
|
*/
|
|
fn assert(bool condition, str message) {
|
|
if (!condition) {
|
|
std::error(std::format("assertion failed '{0}'", message));
|
|
}
|
|
};
|
|
|
|
/**
|
|
Asserts that a given value is true. If it's not, print the given message to the console as a warning
|
|
@param condition The condition that is required to be true
|
|
@param message The message to print in case the assertion doesn't hold
|
|
*/
|
|
fn assert_warn(bool condition, str message) {
|
|
if (!condition) {
|
|
std::warning(std::format("assertion failed '{0}'", message));
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
Queries the value of a set environment variable given it's name
|
|
@param name The name of the env variable
|
|
@return The value of that variable
|
|
*/
|
|
fn env(str name) {
|
|
return builtin::std::env(name);
|
|
};
|
|
|
|
/**
|
|
Returns the number of parameters in a parameter pack.
|
|
@param pack The pack to check
|
|
@return Number of parameters in `pack`
|
|
*/
|
|
fn sizeof_pack(auto ... pack) {
|
|
return builtin::std::sizeof_pack(pack);
|
|
};
|
|
|
|
/**
|
|
Throws an error notifying the developer that the current code path is not implemented currently.
|
|
*/
|
|
fn unimplemented() {
|
|
std::error("Unimplemented code path reached!");
|
|
};
|
|
|
|
} |