Coder Social home page Coder Social logo

Avoid memcpy? about tiny-utf8 HOT 4 CLOSED

duffsdevice avatar duffsdevice commented on May 20, 2024
Avoid memcpy?

from tiny-utf8.

Comments (4)

DuffsDevice avatar DuffsDevice commented on May 20, 2024

Hi Kelas, currently, string manipulation without buffer ownership (as in memory mapped files) is not supported by tinyutf8. However, it is not supported by std::string either (and therefore not in std::string::assign as well).

You might add this into "Projects > Feature Requests", but I don't know if I or anyone else will find the time to implement it without resulting into too much runtime overhead in the library.

Thank you however for your interest, if there is anything else I can help you with, let me know.

Cheers,
Jakob

from tiny-utf8.

kelas avatar kelas commented on May 20, 2024

Hey Jakob, you're right — what I had in mind is std::string_view

from tiny-utf8.

DuffsDevice avatar DuffsDevice commented on May 20, 2024

Oh, yes, std::string_view does not have memory ownership! But, you know [thinking about implementing string_view for utf8] I would have to implement most every function in utf8_string in utf8_string_view, which I don't have the time for right now 🙊

from tiny-utf8.

MoAlyousef avatar MoAlyousef commented on May 20, 2024

Oh, yes, std::string_view does not have memory ownership! But, you know [thinking about implementing string_view for utf8] I would have to implement most every function in utf8_string in utf8_string_view, which I don't have the time for right now 🙊

Not a solution, but a temporary one is to provide an implicit conversion operator like:
operator std::string_view() const { return std::string_view(data(), size()); }

Which should allow passing utf8_string as a string view into functions, and all the string_view functions would be available. The user should be warned though on the gotchas associated with it (not being able to iterate over code points etc), unless the user instantiates a new utf8_string from the std::string_view.

from tiny-utf8.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.