| 191 | return strcmp( begin(), other ) == 0 ; |
| 192 | } |
| 193 | bool operator!=( const char* other) const { |
| 194 | return strcmp( begin(), other ) != 0 ; |
| 195 | } |
| 196 | |
| 197 | template<template <class> class SP> |
| 198 | bool operator==( const string_proxy<STRSXP, SP>& other) const { |