Boboter
Loading...
Searching...
No Matches
square_value.h
Go to the documentation of this file.
1
7
8#pragma once
9
17inline int square(const int value) {
18 return value * value;
19}
int square(const int value)
Simple helper function to make it cleaner to square a value in an equation.
Definition square_value.h:17