You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, when a struct has a trait bound (e.g. struct QuadExtField<P: QuadExtConfig>, we cannot make inherent impl methods const due to the trait bound. Once rust-lang/rust#93827 lands, we should change as many methods as possible to be const. When this is done for the new constructors, this can help us get rid of the QuadExt and CubicExt macros that were added in #379.
The text was updated successfully, but these errors were encountered:
Right now, when a struct has a trait bound (e.g.
struct QuadExtField<P: QuadExtConfig>
, we cannot make inherent impl methodsconst
due to the trait bound. Once rust-lang/rust#93827 lands, we should change as many methods as possible to be const. When this is done for thenew
constructors, this can help us get rid of theQuadExt
andCubicExt
macros that were added in #379.The text was updated successfully, but these errors were encountered: