Ignore:
Timestamp:
Aug 7, 2023, 10:24:22 AM (11 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
ff7f6d07
Parents:
3c82bf6
Message:

add missing slicing routine with one argument

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/containers/string.cfa

    r3c82bf6 rbc9f84a  
    99// Author           : Michael L. Brooks
    1010// Created On       : Fri Sep 03 11:00:00 2021
    11 // Last Modified By : Michael L. Brooks
    12 // Last Modified On : Fri Sep 03 11:00:00 2021
    13 // Update Count     : 1
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Mon Aug  7 10:07:26 2023
     13// Update Count     : 2
    1414//
    1515
     
    118118}
    119119
     120string ?()( string & this, size_t start ) {
     121    string ret = { *this.inner, start, size( this ) };
     122    return ret`shareEdits;
     123}
     124
    120125////////////////////////////////////////////////////////
    121126// Comparison
Note: See TracChangeset for help on using the changeset viewer.