| 1 | //
|
|---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
|
|---|
| 3 | //
|
|---|
| 4 | // The contents of this file are covered under the licence agreement in the
|
|---|
| 5 | // file "LICENCE" distributed with Cforall.
|
|---|
| 6 | //
|
|---|
| 7 | // string -- variable-length, mutable run of text, with value semantics
|
|---|
| 8 | //
|
|---|
| 9 | // Author : Michael L. Brooks
|
|---|
| 10 | // Created On : Fri Sep 03 11:00:00 2021
|
|---|
| 11 | // Last Modified By : Peter A. Buhr
|
|---|
| 12 | // Last Modified On : Sun Jan 14 12:03:47 2024
|
|---|
| 13 | // Update Count : 240
|
|---|
| 14 | //
|
|---|
| 15 |
|
|---|
| 16 | #include "string.hfa"
|
|---|
| 17 | #include "string_res.hfa"
|
|---|
| 18 | #include <stdlib.hfa>
|
|---|
| 19 |
|
|---|
| 20 | #pragma GCC visibility push(default)
|
|---|
| 21 |
|
|---|
| 22 | /*
|
|---|
| 23 | Implementation Principle: typical operation translates to the equivalent
|
|---|
| 24 | operation on `inner`. Exceptions are implementing new RAII pattern for value
|
|---|
| 25 | semantics and some const-hell handling.
|
|---|
| 26 | */
|
|---|
| 27 |
|
|---|
| 28 | ////////////////////////////////////////////////////////
|
|---|
| 29 | // string RAII
|
|---|
| 30 |
|
|---|
| 31 | // private (not in header)
|
|---|
| 32 | static void ?{}( string & s, string_res & src, size_t start, size_t len ) {
|
|---|
| 33 | (s.inner) { malloc() };
|
|---|
| 34 | ?{}( *s.inner, src, SHARE_EDITS, start, len );
|
|---|
| 35 | }
|
|---|
| 36 |
|
|---|
| 37 | void ?{}( string & s ) {
|
|---|
| 38 | (s.inner) { malloc() };
|
|---|
| 39 | ?{}( *s.inner );
|
|---|
| 40 | }
|
|---|
| 41 |
|
|---|
| 42 | void ?{}( string & s, const string & c ) {
|
|---|
| 43 | (s.inner) { malloc() };
|
|---|
| 44 | ?{}( *s.inner, *c.inner, COPY_VALUE );
|
|---|
| 45 | }
|
|---|
| 46 |
|
|---|
| 47 | void ?{}( string & s, const string & s2, size_t maxlen) {
|
|---|
| 48 | (s.inner) { malloc() };
|
|---|
| 49 | ?{}( *s.inner, *s2.inner, COPY_VALUE, maxlen );
|
|---|
| 50 | }
|
|---|
| 51 |
|
|---|
| 52 |
|
|---|
| 53 | void ?{}( string & s, string & c ) {
|
|---|
| 54 | ?{}( s, (const string &) c );
|
|---|
| 55 | }
|
|---|
| 56 |
|
|---|
| 57 | void ?{}( string & s, const char c ) {
|
|---|
| 58 | (s.inner) { malloc() };
|
|---|
| 59 | ?{}( *s.inner, c );
|
|---|
| 60 | }
|
|---|
| 61 |
|
|---|
| 62 | void ?{}( string & s, const char * c ) {
|
|---|
| 63 | (s.inner) { malloc() };
|
|---|
| 64 | ?{}( *s.inner, c );
|
|---|
| 65 | }
|
|---|
| 66 |
|
|---|
| 67 | void ?{}( string & s, const char * c, size_t size) {
|
|---|
| 68 | (s.inner) { malloc() };
|
|---|
| 69 | ?{}( *s.inner, c, size );
|
|---|
| 70 | }
|
|---|
| 71 |
|
|---|
| 72 | void ?{}( string & s, ssize_t rhs ) {
|
|---|
| 73 | (s.inner) { malloc() };
|
|---|
| 74 | ?{}( *s.inner, rhs );
|
|---|
| 75 | }
|
|---|
| 76 |
|
|---|
| 77 | void ?{}( string & s, size_t rhs ) {
|
|---|
| 78 | (s.inner) { malloc() };
|
|---|
| 79 | ?{}( *s.inner, rhs );
|
|---|
| 80 | }
|
|---|
| 81 |
|
|---|
| 82 | void ?{}( string & s, double rhs ) {
|
|---|
| 83 | (s.inner) { malloc() };
|
|---|
| 84 | ?{}( *s.inner, rhs );
|
|---|
| 85 | }
|
|---|
| 86 |
|
|---|
| 87 | void ?{}( string & s, long double rhs ) {
|
|---|
| 88 | (s.inner) { malloc() };
|
|---|
| 89 | ?{}( *s.inner, rhs );
|
|---|
| 90 | }
|
|---|
| 91 |
|
|---|
| 92 | void ?{}( string & s, double _Complex rhs ) {
|
|---|
| 93 | (s.inner) { malloc() };
|
|---|
| 94 | ?{}( *s.inner, rhs );
|
|---|
| 95 | }
|
|---|
| 96 |
|
|---|
| 97 | void ?{}( string & s, long double _Complex rhs ) {
|
|---|
| 98 | (s.inner) { malloc() };
|
|---|
| 99 | ?{}( *s.inner, rhs );
|
|---|
| 100 | }
|
|---|
| 101 |
|
|---|
| 102 | void ^?{}( string & s ) {
|
|---|
| 103 | ^(*s.inner){};
|
|---|
| 104 | free( s.inner );
|
|---|
| 105 | s.inner = 0p;
|
|---|
| 106 | }
|
|---|
| 107 |
|
|---|
| 108 | ////////////////////////////////////////////////////////
|
|---|
| 109 | // Alternate construction: request shared edits
|
|---|
| 110 |
|
|---|
| 111 | string_WithSharedEdits ?`shareEdits( string & s ) {
|
|---|
| 112 | string_WithSharedEdits ret = { &s };
|
|---|
| 113 | return ret;
|
|---|
| 114 | }
|
|---|
| 115 |
|
|---|
| 116 | void ?{}( string & s, string_WithSharedEdits src ) {
|
|---|
| 117 | ?{}( s, *src.s->inner, 0, src.s->inner->Handle.lnth);
|
|---|
| 118 | }
|
|---|
| 119 |
|
|---|
| 120 | ////////////////////////////////////////////////////////
|
|---|
| 121 | // Assignment
|
|---|
| 122 |
|
|---|
| 123 | string & ?=?(string & s, const string & c) {
|
|---|
| 124 | (*s.inner) = (*c.inner);
|
|---|
| 125 | return s;
|
|---|
| 126 | }
|
|---|
| 127 |
|
|---|
| 128 | string & ?=?(string & s, string & c) {
|
|---|
| 129 | (*s.inner) = (*c.inner);
|
|---|
| 130 | return s;
|
|---|
| 131 | }
|
|---|
| 132 |
|
|---|
| 133 | string & ?=?( string & s, const char * val ) {
|
|---|
| 134 | (*s.inner) = val;
|
|---|
| 135 | return s;
|
|---|
| 136 | }
|
|---|
| 137 |
|
|---|
| 138 | string & ?=?( string & s, char val ) {
|
|---|
| 139 | (*s.inner) = val;
|
|---|
| 140 | return s;
|
|---|
| 141 | }
|
|---|
| 142 |
|
|---|
| 143 | string & assign(string & s, const string & c, size_t n) {
|
|---|
| 144 | assign(*s.inner, *c.inner, n);
|
|---|
| 145 | return s;
|
|---|
| 146 | }
|
|---|
| 147 |
|
|---|
| 148 | string & assign(string & s, const char * c, size_t n) {
|
|---|
| 149 | assign(*s.inner, c, n);
|
|---|
| 150 | return s;
|
|---|
| 151 | }
|
|---|
| 152 |
|
|---|
| 153 | string & ?=?( string & s, ssize_t rhs ) {
|
|---|
| 154 | (*s.inner) = rhs;
|
|---|
| 155 | return s;
|
|---|
| 156 | }
|
|---|
| 157 |
|
|---|
| 158 | string & ?=?( string & s, size_t rhs ) {
|
|---|
| 159 | (*s.inner) = rhs;
|
|---|
| 160 | return s;
|
|---|
| 161 | }
|
|---|
| 162 |
|
|---|
| 163 | string & ?=?( string & s, double rhs ) {
|
|---|
| 164 | (*s.inner) = rhs;
|
|---|
| 165 | return s;
|
|---|
| 166 | }
|
|---|
| 167 |
|
|---|
| 168 | string & ?=?( string & s, long double rhs ) {
|
|---|
| 169 | (*s.inner) = rhs;
|
|---|
| 170 | return s;
|
|---|
| 171 | }
|
|---|
| 172 |
|
|---|
| 173 | string & ?=?( string & s, double _Complex rhs ) {
|
|---|
| 174 | (*s.inner) = rhs;
|
|---|
| 175 | return s;
|
|---|
| 176 | }
|
|---|
| 177 |
|
|---|
| 178 | string & ?=?( string & s, long double _Complex rhs ) {
|
|---|
| 179 | (*s.inner) = rhs;
|
|---|
| 180 | return s;
|
|---|
| 181 | }
|
|---|
| 182 |
|
|---|
| 183 | ////////////////////////////////////////////////////////
|
|---|
| 184 | // Input-Output
|
|---|
| 185 |
|
|---|
| 186 | ofstream & ?|?( ofstream & out, const string & s ) {
|
|---|
| 187 | return out | (*s.inner); // print internal string_res
|
|---|
| 188 | }
|
|---|
| 189 |
|
|---|
| 190 | void ?|?( ofstream & out, const string & s ) {
|
|---|
| 191 | (ofstream &)(out | (*s.inner)); ends( out );
|
|---|
| 192 | }
|
|---|
| 193 |
|
|---|
| 194 | ofstream & ?|?( ofstream & os, _Ostream_Manip(string) f ) {
|
|---|
| 195 | size_t len = size( f.val );
|
|---|
| 196 | char cstr[len + 1]; // room for null terminator
|
|---|
| 197 | for ( i; len ) cstr[i] = f.val[i]; // copy string
|
|---|
| 198 | cstr[len] = '\0'; // terminate
|
|---|
| 199 | _Ostream_Manip(const char *) cf @= { cstr, f.wd, f.pc, f.base, {f.all} };
|
|---|
| 200 | os | cf | nonl;
|
|---|
| 201 | return os;
|
|---|
| 202 | } // ?|?
|
|---|
| 203 |
|
|---|
| 204 | void ?|?( ofstream & os, _Ostream_Manip(string) f ) {
|
|---|
| 205 | (ofstream &)(os | f); ends( os );
|
|---|
| 206 | }
|
|---|
| 207 |
|
|---|
| 208 | ifstream & ?|?(ifstream & in, string & s) {
|
|---|
| 209 | return in | (*s.inner); // read to internal string_res
|
|---|
| 210 | }
|
|---|
| 211 |
|
|---|
| 212 | void ?|?( ifstream & in, string & s ) {
|
|---|
| 213 | in | (*s.inner);
|
|---|
| 214 | }
|
|---|
| 215 |
|
|---|
| 216 | ifstream & ?|?( ifstream & is, _Istream_Sstr f ) {
|
|---|
| 217 | _Istream_Rstr f2 = {f.s.inner, (_Istream_str_base)f};
|
|---|
| 218 | return is | f2;
|
|---|
| 219 | } // ?|?
|
|---|
| 220 |
|
|---|
| 221 | void ?|?( ifstream & in, _Istream_Sstr f ) {
|
|---|
| 222 | (ifstream &)(in | f);
|
|---|
| 223 | }
|
|---|
| 224 |
|
|---|
| 225 | ////////////////////////////////////////////////////////
|
|---|
| 226 | // Slicing
|
|---|
| 227 |
|
|---|
| 228 | string ?()( string & s, size_t start, size_t len ) {
|
|---|
| 229 | string ret = { *s.inner, start, len };
|
|---|
| 230 | return ret`shareEdits;
|
|---|
| 231 | }
|
|---|
| 232 |
|
|---|
| 233 | string ?()( string & s, size_t start ) {
|
|---|
| 234 | string ret = { *s.inner, start, size( s ) - start };
|
|---|
| 235 | return ret`shareEdits;
|
|---|
| 236 | }
|
|---|
| 237 |
|
|---|
| 238 | ////////////////////////////////////////////////////////
|
|---|
| 239 | // Comparison
|
|---|
| 240 |
|
|---|
| 241 | int strcmp(const string & s1, const string & s2) { return strcmp(*s1.inner, *s2.inner); }
|
|---|
| 242 | bool ?==?(const string & s1, const string & s2) { return *s1.inner == *s2.inner; }
|
|---|
| 243 | bool ?!=?(const string & s1, const string & s2) { return *s1.inner != *s2.inner; }
|
|---|
| 244 | bool ?>? (const string & s1, const string & s2) { return *s1.inner > *s2.inner; }
|
|---|
| 245 | bool ?>=?(const string & s1, const string & s2) { return *s1.inner >= *s2.inner; }
|
|---|
| 246 | bool ?<=?(const string & s1, const string & s2) { return *s1.inner <= *s2.inner; }
|
|---|
| 247 | bool ?<? (const string & s1, const string & s2) { return *s1.inner < *s2.inner; }
|
|---|
| 248 |
|
|---|
| 249 | int strcmp(const string & s1, const char * s2) { return strcmp(*s1.inner, s2 ); }
|
|---|
| 250 | bool ?==?(const string & s1, const char * s2) { return *s1.inner == s2; }
|
|---|
| 251 | bool ?!=?(const string & s1, const char * s2) { return *s1.inner != s2; }
|
|---|
| 252 | bool ?>? (const string & s1, const char * s2) { return *s1.inner > s2; }
|
|---|
| 253 | bool ?>=?(const string & s1, const char * s2) { return *s1.inner >= s2; }
|
|---|
| 254 | bool ?<=?(const string & s1, const char * s2) { return *s1.inner <= s2; }
|
|---|
| 255 | bool ?<? (const string & s1, const char * s2) { return *s1.inner < s2; }
|
|---|
| 256 |
|
|---|
| 257 | int strcmp(const char * s1, const string & s2) { return strcmp( s1, *s2.inner); }
|
|---|
| 258 | bool ?==?(const char * s1, const string & s2) { return s1 == *s2.inner; }
|
|---|
| 259 | bool ?!=?(const char * s1, const string & s2) { return s1 != *s2.inner; }
|
|---|
| 260 | bool ?>? (const char * s1, const string & s2) { return s1 > *s2.inner; }
|
|---|
| 261 | bool ?>=?(const char * s1, const string & s2) { return s1 >= *s2.inner; }
|
|---|
| 262 | bool ?<=?(const char * s1, const string & s2) { return s1 <= *s2.inner; }
|
|---|
| 263 | bool ?<? (const char * s1, const string & s2) { return s1 < *s2.inner; }
|
|---|
| 264 |
|
|---|
| 265 |
|
|---|
| 266 | ////////////////////////////////////////////////////////
|
|---|
| 267 | // Getter
|
|---|
| 268 |
|
|---|
| 269 | size_t size(const string & s) {
|
|---|
| 270 | return size( *s.inner );
|
|---|
| 271 | }
|
|---|
| 272 |
|
|---|
| 273 | ////////////////////////////////////////////////////////
|
|---|
| 274 | // Concatenation
|
|---|
| 275 |
|
|---|
| 276 | void ?+=?(string & s, char c) {
|
|---|
| 277 | (*s.inner) += c;
|
|---|
| 278 | }
|
|---|
| 279 |
|
|---|
| 280 | void ?+=?(string & s, const string & s2) {
|
|---|
| 281 | (*s.inner) += (*s2.inner);
|
|---|
| 282 | }
|
|---|
| 283 |
|
|---|
| 284 | void append(string & s, const string & s2, size_t maxlen) {
|
|---|
| 285 | append( (*s.inner), (*s2.inner), maxlen );
|
|---|
| 286 | }
|
|---|
| 287 |
|
|---|
| 288 | void ?+=?(string & s, const char * c) {
|
|---|
| 289 | (*s.inner) += c;
|
|---|
| 290 | }
|
|---|
| 291 |
|
|---|
| 292 | void append(string & s, const char * buffer, size_t bsize) {
|
|---|
| 293 | append( (*s.inner), buffer, bsize );
|
|---|
| 294 | }
|
|---|
| 295 |
|
|---|
| 296 | string ?+?(const string & s, char c) {
|
|---|
| 297 | string ret = s;
|
|---|
| 298 | ret += c;
|
|---|
| 299 | return ret;
|
|---|
| 300 | }
|
|---|
| 301 |
|
|---|
| 302 | string ?+?(const string & s, const string & s2) {
|
|---|
| 303 | string ret = s;
|
|---|
| 304 | ret += s2;
|
|---|
| 305 | return ret;
|
|---|
| 306 | }
|
|---|
| 307 |
|
|---|
| 308 | string ?+?(const char * s1, const char * s2) {
|
|---|
| 309 | string ret = s1;
|
|---|
| 310 | ret += s2;
|
|---|
| 311 | return ret;
|
|---|
| 312 | }
|
|---|
| 313 |
|
|---|
| 314 | string ?+?(const string & s, const char * c) {
|
|---|
| 315 | string ret = s;
|
|---|
| 316 | ret += c;
|
|---|
| 317 | return ret;
|
|---|
| 318 | }
|
|---|
| 319 |
|
|---|
| 320 | ////////////////////////////////////////////////////////
|
|---|
| 321 | // Repetition
|
|---|
| 322 |
|
|---|
| 323 | void ?*=?(string & s, size_t factor) {
|
|---|
| 324 | (*s.inner) *= factor;
|
|---|
| 325 | }
|
|---|
| 326 |
|
|---|
| 327 | string ?*?(const string & s, size_t factor) {
|
|---|
| 328 | string ret = s;
|
|---|
| 329 | ret *= factor;
|
|---|
| 330 | return ret;
|
|---|
| 331 | }
|
|---|
| 332 |
|
|---|
| 333 | string ?*?(char c, size_t factor) {
|
|---|
| 334 | string ret = c;
|
|---|
| 335 | ret *= factor;
|
|---|
| 336 | return ret;
|
|---|
| 337 | }
|
|---|
| 338 |
|
|---|
| 339 | string ?*?(const char * s, size_t factor) {
|
|---|
| 340 | string ret = s;
|
|---|
| 341 | ret *= factor;
|
|---|
| 342 | return ret;
|
|---|
| 343 | }
|
|---|
| 344 |
|
|---|
| 345 | ////////////////////////////////////////////////////////
|
|---|
| 346 | // Character access
|
|---|
| 347 |
|
|---|
| 348 | char ?[?](const string & s, size_t index) {
|
|---|
| 349 | return (*s.inner)[index];
|
|---|
| 350 | }
|
|---|
| 351 |
|
|---|
| 352 | string ?[?](string & s, size_t index) {
|
|---|
| 353 | string ret = { *s.inner, index, 1 };
|
|---|
| 354 | return ret`shareEdits;
|
|---|
| 355 | }
|
|---|
| 356 |
|
|---|
| 357 | ////////////////////////////////////////////////////////
|
|---|
| 358 | // Search
|
|---|
| 359 |
|
|---|
| 360 | bool contains(const string & s, char ch) {
|
|---|
| 361 | return contains( *s.inner, ch );
|
|---|
| 362 | }
|
|---|
| 363 |
|
|---|
| 364 | int find(const string & s, char search) {
|
|---|
| 365 | return find( *s.inner, search );
|
|---|
| 366 | }
|
|---|
| 367 |
|
|---|
| 368 | int find(const string & s, const string & search) {
|
|---|
| 369 | return find( *s.inner, *search.inner );
|
|---|
| 370 | }
|
|---|
| 371 |
|
|---|
| 372 | int find(const string & s, const char * search) {
|
|---|
| 373 | return find( *s.inner, search);
|
|---|
| 374 | }
|
|---|
| 375 |
|
|---|
| 376 | int find(const string & s, const char * search, size_t searchsize) {
|
|---|
| 377 | return find( *s.inner, search, searchsize);
|
|---|
| 378 | }
|
|---|
| 379 |
|
|---|
| 380 | int findFrom(const string & s, size_t fromPos, char search) {
|
|---|
| 381 | return findFrom( *s.inner, fromPos, search );
|
|---|
| 382 | }
|
|---|
| 383 |
|
|---|
| 384 | int findFrom(const string & s, size_t fromPos, const string & search) {
|
|---|
| 385 | return findFrom( *s.inner, fromPos, *search.inner );
|
|---|
| 386 | }
|
|---|
| 387 |
|
|---|
| 388 | int findFrom(const string & s, size_t fromPos, const char * search) {
|
|---|
| 389 | return findFrom( *s.inner, fromPos, search );
|
|---|
| 390 | }
|
|---|
| 391 |
|
|---|
| 392 | int findFrom(const string & s, size_t fromPos, const char * search, size_t searchsize) {
|
|---|
| 393 | return findFrom( *s.inner, fromPos, search, searchsize );
|
|---|
| 394 | }
|
|---|
| 395 |
|
|---|
| 396 | bool includes(const string & s, const string & search) {
|
|---|
| 397 | return includes( *s.inner, *search.inner );
|
|---|
| 398 | }
|
|---|
| 399 |
|
|---|
| 400 | bool includes(const string & s, const char * search) {
|
|---|
| 401 | return includes( *s.inner, search );
|
|---|
| 402 | }
|
|---|
| 403 |
|
|---|
| 404 | bool includes(const string & s, const char * search, size_t searchsize) {
|
|---|
| 405 | return includes( *s.inner, search, searchsize );
|
|---|
| 406 | }
|
|---|
| 407 |
|
|---|
| 408 | bool startsWith(const string & s, const string & prefix) {
|
|---|
| 409 | return startsWith( *s.inner, *prefix.inner );
|
|---|
| 410 | }
|
|---|
| 411 |
|
|---|
| 412 | bool startsWith(const string & s, const char * prefix) {
|
|---|
| 413 | return startsWith( *s.inner, prefix );
|
|---|
| 414 | }
|
|---|
| 415 |
|
|---|
| 416 | bool startsWith(const string & s, const char * prefix, size_t prefixsize) {
|
|---|
| 417 | return startsWith( *s.inner, prefix, prefixsize );
|
|---|
| 418 | }
|
|---|
| 419 |
|
|---|
| 420 | bool endsWith(const string & s, const string & suffix) {
|
|---|
| 421 | return endsWith( *s.inner, *suffix.inner );
|
|---|
| 422 | }
|
|---|
| 423 |
|
|---|
| 424 | bool endsWith(const string & s, const char * suffix) {
|
|---|
| 425 | return endsWith( *s.inner, suffix );
|
|---|
| 426 | }
|
|---|
| 427 |
|
|---|
| 428 | bool endsWith(const string & s, const char * suffix, size_t suffixsize) {
|
|---|
| 429 | return endsWith( *s.inner, suffix, suffixsize );
|
|---|
| 430 | }
|
|---|
| 431 |
|
|---|
| 432 |
|
|---|
| 433 | ///////////////////////////////////////////////////////////////////////////
|
|---|
| 434 | // charclass, include, exclude
|
|---|
| 435 |
|
|---|
| 436 | void ?{}( charclass & s, const string & chars) {
|
|---|
| 437 | (s.inner) { malloc() };
|
|---|
| 438 | ?{}( *s.inner, *(const string_res *)chars.inner );
|
|---|
| 439 | }
|
|---|
| 440 |
|
|---|
| 441 | void ?{}( charclass & s, const char * chars ) {
|
|---|
| 442 | (s.inner) { malloc() };
|
|---|
| 443 | ?{}( *s.inner, chars );
|
|---|
| 444 | }
|
|---|
| 445 |
|
|---|
| 446 | void ?{}( charclass & s, const char * chars, size_t charssize ) {
|
|---|
| 447 | (s.inner) { malloc() };
|
|---|
| 448 | ?{}( *s.inner, chars, charssize );
|
|---|
| 449 | }
|
|---|
| 450 |
|
|---|
| 451 | void ^?{}( charclass & s ) {
|
|---|
| 452 | ^(*s.inner){};
|
|---|
| 453 | free( s.inner );
|
|---|
| 454 | s.inner = 0p;
|
|---|
| 455 | }
|
|---|
| 456 |
|
|---|
| 457 |
|
|---|
| 458 | int exclude(const string & s, const charclass & mask) {
|
|---|
| 459 | return exclude( *s.inner, *mask.inner );
|
|---|
| 460 | }
|
|---|
| 461 | /*
|
|---|
| 462 | StrSlice exclude(string & s, const charclass & mask) {
|
|---|
| 463 | }
|
|---|
| 464 | */
|
|---|
| 465 |
|
|---|
| 466 | int include(const string & s, const charclass & mask) {
|
|---|
| 467 | return include( *s.inner, *mask.inner );
|
|---|
| 468 | }
|
|---|
| 469 |
|
|---|
| 470 | /*
|
|---|
| 471 | StrSlice include(string & s, const charclass & mask) {
|
|---|
| 472 | }
|
|---|
| 473 | */
|
|---|
| 474 |
|
|---|