-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
Feature RequestThis issue is a request for a particular featureThis issue is a request for a particular featureMinorThis change is a minor additionThis change is a minor addition
Description
Add template aliases SQ<I, F> and UQ<I, F> to FixedPointsCommon.h.
These would effectively serve as a more convinient short-hand for those who are familiar with Q notation and would probably be direct aliases for SFixed and UFixed.
I.e.
template< unsigned Integer, unsigned Fraction >
using SQ = SFixed<Integer, Fraction>;
template< unsigned Integer, unsigned Fraction >
using UQ = UFixed<Integer, Fraction>;If this change is made after the resolution of #19 then it may be worth having a more complex implementation that also permits a single template parameter when no integer part is desired.
Metadata
Metadata
Assignees
Labels
Feature RequestThis issue is a request for a particular featureThis issue is a request for a particular featureMinorThis change is a minor additionThis change is a minor addition