Code Monkey home page Code Monkey logo

Comments (2)

sapek avatar sapek commented on July 16, 2024

You could define polymorphic tree like this:

struct Data
{}

struct Node;
struct Node
{
    0: nullable<Node> left;
    1: nullable<Node> right;
    2: bonded<Base> data;
}

You will need to serialize each node data to initialize the data field, like in the polymorphic_container example. You can also use generic Node<T>, either defining the data field as 2: bonded<T> data; or as 2: T data;. In the latter case you would use Node<bonded<Data>> instance.

from bond.

codespare avatar codespare commented on July 16, 2024

Thank you, that got me unstuck. Ironically, that is much closer to the structure I am experimenting with(GumboParser) as opposed to the inheritance based model I was trying initially (conventional OO bias probably).
I have also tried the approach briefly mentioned in the 'Why Bond' article to emulate union with nullable<> and that works too. I still need to dig further to figure out the trade-offs in each approach.
Also, I am curious to understand when a mapping between a C and Bond model such as this one mandates the use of bonded<> and an interim serialization, versus when it can be made blittable, possibly using transforms, but no intermediate copy.

from bond.

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.