|  | Home | Libraries | People | FAQ | More | 
            Find the first occurrence of a character not equal to c.
          
constexpr size_type find_first_not_of( value_type c, size_type pos = 0) const;
            Finds the first occurrence of a character that is not equal to c.
          
Linear.
            The index corrosponding to the first character of {begin()
            + pos, end())
            that is not equal to c
            if it exists, and npos otherwise.
          
| Name | Description | 
|---|---|
| 
                       | The character to ignore. | 
| 
                       | 
                      The index to start searching at. The default argument for this
                      parameter is  |