cp-documentation

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub zawa-tin/cp-documentation

:heavy_check_mark: 浮動小数点数型のエイリアス
(Src/Template/FloatingNumberAlias.hpp)

概要

浮動小数点型の型名のエイリアスを提供します。

ライブラリの使い方

ld

using ld = long double;

long double型はzawa::下ではldという名前で使用可能です。

Verified with

Code

#pragma once

namespace zawa {

using ld = long double;

} // namespace zawa
#line 2 "Src/Template/FloatingNumberAlias.hpp"

namespace zawa {

using ld = long double;

} // namespace zawa
Back to top page