bsnes/nall/string/atoi.hpp

18 lines
257 B
C++
Raw Normal View History

#pragma once
namespace nall {
auto string::integer() const -> intmax {
return nall::integer(data());
}
auto string::natural() const -> uintmax {
return nall::natural(data());
}
auto string::real() const -> double {
return nall::real(data());
}
}