「🗑️」 clean: moved to other file
This commit is contained in:
28
ex00/PrintNb.hpp
Normal file
28
ex00/PrintNb.hpp
Normal file
@ -0,0 +1,28 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* PrintNb.hpp :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/04/08 14:30:07 by adjoly #+# #+# */
|
||||
/* Updated: 2025/04/08 14:30:36 by adjoly ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <iostream>
|
||||
|
||||
template <typename T> void _printFloat(T nb) {
|
||||
std::cout << "float: " << static_cast<float>(nb) << "f" << std::endl;
|
||||
}
|
||||
template <typename T> void _printInt(T nb) {
|
||||
std::cout << "int: " << static_cast<int>(nb) << std::endl;
|
||||
}
|
||||
template <typename T> void _printChar(T nb) {
|
||||
std::cout << "char: '" << static_cast<char>(nb) << "'" << std::endl;
|
||||
}
|
||||
template <typename T> void _printDouble(T nb) {
|
||||
std::cout << "double: " << static_cast<double>(nb) << std::endl;
|
||||
}
|
Reference in New Issue
Block a user