[docs] missing string numeric parse docs

This commit is contained in:
ryanfleury
2021-11-01 01:14:54 -06:00
parent a7efe71a50
commit 5b984f5bc1
+2 -2
View File
@@ -1544,18 +1544,18 @@ MD_ParseSetRule:
//~ Numeric Strings //~ Numeric Strings
@send(Strings) @send(Strings)
@doc("Returns @code '1' if @code 'string' appears to encode an integer value with a base of @code 'radix', or @code '0' otherwise.")
@func MD_StringIsU64: @func MD_StringIsU64:
{ {
// TODO(rjf): @docs
string: MD_String8, string: MD_String8,
radix: MD_u32, radix: MD_u32,
return: MD_b32, return: MD_b32,
} }
@send(Strings) @send(Strings)
@doc("Returns @code '1' if @code 'string' appears to encode an integer value in C-style syntax, or @code '0' otherwise.")
@func MD_StringIsCStyleInt: @func MD_StringIsCStyleInt:
{ {
// TODO(rjf): @docs
string: MD_String8, string: MD_String8,
return: MD_b32, return: MD_b32,
} }