Giter Site home page Giter Site logo

Comments (7)

michael-brade avatar michael-brade commented on May 28, 2024 1

Yes, I agree and the logic is very good. Thanks a lot!

from json.

ColinH avatar ColinH commented on May 28, 2024

Am I right to assume that working with std::optional< bool > is not a viable work-around?

from json.

michael-brade avatar michael-brade commented on May 28, 2024

yes because that is an API change and it wouldn't be true. The object always has the bool (or int or string for that matter), it's just about how to serialize this object to json.

from json.

ColinH avatar ColinH commented on May 28, 2024

After checking the source I believe that is_nothing should never have been applied to non-optional members in the first place.

from json.

ColinH avatar ColinH commented on May 28, 2024

Now I'm wondering whether we still need for_nothing_value.

from json.

michael-brade avatar michael-brade commented on May 28, 2024

Great, I agree with that so far.

Yes, I like for_nothing_value because then I can at least somewhat individually decide if I want the 0/false/empty values in a json representation or not.

from json.

ColinH avatar ColinH commented on May 28, 2024

After the most recent change binding::object encodes a member when the object uses for_nothing_value::encode and/or the member uses member_kind::required and/or the member's is_nothing_value is false.

Consequently for_nothing_value does not influence the behaviour of required members. That sounds reasonable and I'm prone to believe that it can stay like this. @michael-brade Do you agree, does this work for your use cases?

template< typename A, template< typename... > class Traits, typename C >
[[nodiscard]] static bool require_encode( const C& x )
{
   return ( N == for_nothing_value::encode ) || ( A::kind == member_kind::required ) || ( !A::template is_nothing< Traits >( x ) );
}

from json.

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.