Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[C++] Tracking issue: Support row format serializer for C++ types #1145

Open
9 of 12 tasks
PragmaTwice opened this issue Nov 26, 2023 · 0 comments
Open
9 of 12 tasks

[C++] Tracking issue: Support row format serializer for C++ types #1145

PragmaTwice opened this issue Nov 26, 2023 · 0 comments
Labels
enhancement New feature or request

Comments

@PragmaTwice
Copy link
Member

PragmaTwice commented Nov 26, 2023

Is your feature request related to a problem? Please describe.

Currently we only have raw Writers in C++ fury implementation,
it's not supposed to be directly used by users for their own classes.

Instead, we can support serializers via a more intuitive way, e.g.

struct Something {
   int val1;
   float val2;
   ...
};

FURY_FIELD_INFO(Something, val1, val2, ...);

Something a = ...;
serializer.encode(a); // including schema building and writer codegen

Describe the solution you'd like

Steps:

Additional context

--

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant