Searched refs:isSignedNum (Results 1 – 2 of 2) sorted by relevance
98 if constexpr (std::is_same_v<std::decay_t<T>, bool> || isSignedNum<T>) { in AppendValue()484 … if constexpr ((isSignedNum<T> && isSignedNum<V>) || (isUnsignedNum<T> && isUnsignedNum<V>)) { in ParseValue()
53 inline static constexpr bool isSignedNum = std::is_same_v<std::decay_t<T>, std::int8_t> || variable