Minimum, messy code

This commit is contained in:
Cory Balaton 2023-12-17 13:33:06 +01:00
commit 54de6d68b1
9 changed files with 427 additions and 12 deletions

19
include/literals.hpp Normal file
View file

@ -0,0 +1,19 @@
/** @file literals.hpp
*
* @author Cory Alexander Balaton (coryab)
* @author Janita Ovidie Sandtrøen Willumsen (janitaws)
*
* @version 1.0
*
* @brief Useful literals
*
* @bug No known bugs
* */
#ifndef __LITERALS__
#define __LITERALS__
#include <complex>
std::complex<double> operator ""_i(long double magnitude);
#endif