What's a way to apply serializers with type parame...
# serialization
l
What's a way to apply serializers with type parameters via an annotation? i.e. instead of
Primitive<T>
,
@Primitive T
(where in the former,
Primitive
is a simple wrapper with a custom serializer).
l
@Adam S yeah it won't work
I need this to work for all types
Ended up using a delegating string formar
*format