theweipeng opened a new pull request, #1321:
URL: https://github.com/apache/incubator-fury/pull/1321

   Implement the Enum type which declare in SPEC.
   
   Usage: 
   ```TypeScript
       enum Foo {
           f1 = 1,
           f2 = 2
       }
       const fury = new Fury({ refTracking: true });   
       const {serialize, deserialize} = fury.registerSerializer(Type.enum(Foo)) 
       const input = serialize(Foo.f1);
       const result = deserialize(
           input
       );
       expect(result).toEqual(Foo.f1)
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to