comp-library

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

View the Project on GitHub luzhiled1333/comp-library

:heavy_check_mark: src/geometry/R2/numbers/sign.hpp

Depends on

Required by

Verified with

Code

#pragma once

#include "src/cpp-template/header/int-alias.hpp"

namespace luz::numbers::sign {

  constexpr i32 negative = -1;
  constexpr i32 zero     = 0;
  constexpr i32 positive = +1;

} // namespace luz::numbers::sign
#line 2 "src/geometry/R2/numbers/sign.hpp"

#line 2 "src/cpp-template/header/int-alias.hpp"

#include <cstdint>

namespace luz {

  using i32  = std::int32_t;
  using i64  = std::int64_t;
  using i128 = __int128_t;

  using u32  = std::uint32_t;
  using u64  = std::uint64_t;
  using u128 = __uint128_t;

} // namespace luz
#line 4 "src/geometry/R2/numbers/sign.hpp"

namespace luz::numbers::sign {

  constexpr i32 negative = -1;
  constexpr i32 zero     = 0;
  constexpr i32 positive = +1;

} // namespace luz::numbers::sign
Back to top page