Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/collections/string-api-coverage.cfa

    r3bfa80f r01e6bd9  
    158158
    159159
     160
     161
    160162    sout | len(s); // 5
    161163
     
    408410        sout
    409411                | (return size_t)include( "1FeC34aB", isxdigit )
    410                 | (return size_t)include( ".,;'!\"", ispunct )
     412                | (return size_t)include( ".,;!\"", ispunct )
    411413                | (return size_t)include( "XXXx", isupper );
    412414
    413415        sout
    414416                | (return string)include( "1FeC34aB", isxdigit )
    415                 | (return string)include( ".,;'!\"", ispunct )
     417                | (return string)include( ".,;!\"", ispunct )
    416418                | (return string)include( "XXXx", isupper );
    417419
    418420        sout
    419421                | (return size_t)exclude( "1FeC34aB", isdigit )
    420                 | (return size_t)exclude( ".,;'!\"", ispunct )
     422                | (return size_t)exclude( ".,;!\"", ispunct )
    421423                | (return size_t)exclude( "XXXx", islower );
    422424
    423425        sout
    424426                | (return string)exclude( "1FeC34aB", isalpha )
    425                 | (return string)exclude( ".,;'!\"", ispunct )
     427                | (return string)exclude( ".,;!\"", ispunct )
    426428                | (return string)exclude( "XXXx", islower );
    427429}
Note: See TracChangeset for help on using the changeset viewer.