From 62753c815b5ec34ebfae37a3c89187a01cc17160 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 18 Apr 2019 19:09:04 -0700 Subject: Minor quality of life additions to string and variant. More coming to string. I need to figure some things out in variant. --- src/stable/string.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/stable/string.h') diff --git a/src/stable/string.h b/src/stable/string.h index 131f621..af147a7 100644 --- a/src/stable/string.h +++ b/src/stable/string.h @@ -879,6 +879,10 @@ namespace Bu */ String toUpper() const; + int16_t toInt16( int iRadix=10 ) const; + int32_t toInt32( int iRadix=10 ) const; + int64_t toInt64( int iRadix=10 ) const; + const_iterator find( const char cChar, const_iterator iStart=const_iterator() ) const; -- cgit v1.2.3