Previous title: abstract type Content returns Any under eltype(x::Content)
I'm trying to make RecordArrays to/from_table round-tripable, and come across:
https://github.com/jpivarski/AwkwardArray.jl/blob/b53fed9b9fe99d1dc459c37bba9f70e4cd950abd/src/AwkwardArray.jl#L105
the ITEM where ITEM doesn't do anything because:
julia> ITEM where ITEM
Any
so effectively the "element type" of a Content{BEHAVIOR} is not encoded in the type parameters -- this may be fine. But I just want to make sure this is intended before I go about and define eltype() for each of the subtypes of Content