Replies: 1 comment 1 reply
-
Hmmm, is |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey all,
I would like to implement the Tables interface for my custom types. We have a lot of types which have optional fields: Sometimes they have a value and sometimes they report a
nothing
or amissing
. I guess I could get it to work by custom defining every struct with optional fields, but is there a more simple way. Here is a simple example:This does not work because
length(::Nothing)
is not defined. Is there a general way to fix this?Beta Was this translation helpful? Give feedback.
All reactions