Files
xahaud/src/ripple/protocol/impl
Scott Schurr 4515ac0bca Replace base_uint(string) with from_hex_text<> (RIPD-897)
Removes the base_uint constructor that took a string.  Replaces
that functionality with two free functions named from_hex_text<>.
Use of from_hex_text<> looks like this:

auto v = from_hex_text<uint256>("AAA555");
static_assert (std::is_same<decltype(v), uint256>::value, "Huh!");

from_hex_text<> only operates on base_uint types.  At the moment the
list of those types include:

 o uint128,
 o uint160,
 o uint256,
 o Directory,
 o Account,
 o Currency, and
 o NodeID.

Using from_hex_text<> with any other types will not compile due to
an enable_if.
2015-06-02 12:46:03 -07:00
..
2015-05-29 13:45:23 -04:00
2015-05-22 11:09:50 -07:00
2015-05-20 12:34:19 -07:00
2015-05-22 11:09:50 -07:00
2015-05-22 11:09:50 -07:00
2015-05-20 13:23:59 -07:00
2015-05-29 13:44:44 -04:00
2015-05-06 13:11:24 -07:00