MCPcopy Create free account
hub / github.com/ByConity/ByConity / integer

Method integer

base/common/wide_integer_impl.h:985–992  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

983template <size_t Bits, typename Signed>
984template <typename T>
985constexpr integer<Bits, Signed>::integer(T rhs) noexcept
986 : items{}
987{
988 if constexpr (IsWideInteger<T>::value)
989 _impl::wide_integer_from_wide_integer(*this, rhs);
990 else
991 _impl::wide_integer_from_builtin(*this, rhs);
992}
993
994template <size_t Bits, typename Signed>
995template <typename T>

Callers

nothing calls this directly

Calls 3

sizeMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected