GithubHelp home page GithubHelp logo

Comments (2)

jleffler avatar jleffler commented on May 25, 2024

from date.

HowardHinnant avatar HowardHinnant commented on May 25, 2024

That's an interesting suggestion. If we were to do it, there's two more difficult things that would need to be done:

  1. Generalize it to accept any character, and provide a way to parse the character so you could inspect it.
  2. Standardize it. This library is now an example implementation of C++20 <chrono>.

The second part we could do after. This library would be the field experience for the proposal. But I wouldn't want to do the field experience without being serious about standardizing it if the field experience is positive.

Here's another way to to parse this pattern. It still requires two calls to parse, but it can be done by streaming consecutively through the stream:

using TimePoint = date::sys_seconds;

TimePoint
parseISO8601(std::istream& is)
{
    date::local_days td;
    TimePoint::duration tod;
    std::chrono::minutes offset;
    is >> date::parse("%F", td);
    auto T = static_cast<char>(is.get());
    if (T != 'T' && T != ' ')
        is.setstate(std::ios::failbit);
    is >> date::parse("%T %z", tod, offset);
    if (is.fail())
        throw std::runtime_error(" ... ");
    return TimePoint{(td + tod).time_since_epoch() - offset};
}

My current feeling is that this is clean enough that I'm not motivated to extend the standard (which is a heavy lift).

from date.

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.