~ubuntu-branches/debian/experimental/arduino/experimental

« back to all changes in this revision

Viewing changes to hardware/arduino/cores/arduino/WString.h

  • Committer: Package Import Robot
  • Author(s): Scott Howard
  • Date: 2012-03-11 18:19:42 UTC
  • mfrom: (1.1.5) (5.1.14 sid)
  • Revision ID: package-import@ubuntu.com-20120311181942-be2clnbz1gcehixb
Tags: 1:1.0.1~rc1+dfsg-1
New upstream release, experimental.

Show diffs side-by-side

added added

removed removed

Lines of Context:
154
154
        int indexOf( const String &str ) const;
155
155
        int indexOf( const String &str, unsigned int fromIndex ) const;
156
156
        int lastIndexOf( char ch ) const;
157
 
        int lastIndexOf( char ch, int fromIndex ) const;
 
157
        int lastIndexOf( char ch, unsigned int fromIndex ) const;
158
158
        int lastIndexOf( const String &str ) const;
159
 
        int lastIndexOf( const String &str, int fromIndex ) const;
 
159
        int lastIndexOf( const String &str, unsigned int fromIndex ) const;
160
160
        String substring( unsigned int beginIndex ) const;
161
161
        String substring( unsigned int beginIndex, unsigned int endIndex ) const;
162
162