In case get_parameters doesn’t exist, what are the alternatives?
I am asking this question because I am writing numerical algorithms with the fixed points of the FixedPointNumbers.jl package. When my function g() receives a Fixed{T,f} number, it needs to know the parameters T and f because they will determine the accuracy of my algorithm.
Sorry, I was typing from my mobile without proper testing. eltype() seems working only for containers-like parametric types, and any-how it returns only the type parameter (e.g. eltype([1,2]) returns Int64).