aboutsummaryrefslogtreecommitdiff
path: root/src/stable/string.h
diff options
context:
space:
mode:
authorMike Buland <mbuland@penny-arcade.com>2019-04-18 19:09:04 -0700
committerMike Buland <mbuland@penny-arcade.com>2019-04-18 19:09:04 -0700
commit62753c815b5ec34ebfae37a3c89187a01cc17160 (patch)
treed6f85d4af7d54c88a7486a3207c33a168ae09bd8 /src/stable/string.h
parentd81e824732c33e2d5ce31fbc58571561a8d9b21f (diff)
downloadlibbu++-62753c815b5ec34ebfae37a3c89187a01cc17160.tar.gz
libbu++-62753c815b5ec34ebfae37a3c89187a01cc17160.tar.bz2
libbu++-62753c815b5ec34ebfae37a3c89187a01cc17160.tar.xz
libbu++-62753c815b5ec34ebfae37a3c89187a01cc17160.zip
Minor quality of life additions to string and variant.
More coming to string. I need to figure some things out in variant.
Diffstat (limited to 'src/stable/string.h')
-rw-r--r--src/stable/string.h4
1 files changed, 4 insertions, 0 deletions
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
879 */ 879 */
880 String toUpper() const; 880 String toUpper() const;
881 881
882 int16_t toInt16( int iRadix=10 ) const;
883 int32_t toInt32( int iRadix=10 ) const;
884 int64_t toInt64( int iRadix=10 ) const;
885
882 const_iterator find( const char cChar, 886 const_iterator find( const char cChar,
883 const_iterator iStart=const_iterator() ) const; 887 const_iterator iStart=const_iterator() ) const;
884 888