Is your feature request related to a problem? Please describe.
You cannot currently use generics inside of classes with the @autolog annotation
Describe the solution you'd like
Would like to be able to do something like this
@AutoLog
public class MotorIOInputs<PosUnit extends Unit, VelUnit extends Unit> {
public Measure<PosUnit> position;
public Measure<VelUnit> velocity;
}
Describe alternatives you've considered
Could of course ditch that entirely and just do double's, but I do like the Units API generally.
Is your feature request related to a problem? Please describe.
You cannot currently use generics inside of classes with the @autolog annotation
Describe the solution you'd like
Would like to be able to do something like this
Describe alternatives you've considered
Could of course ditch that entirely and just do
double's, but I do like the Units API generally.