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
We have a need for Parameters that are Read-Only. For example, if we have some object that is doing mem allocation (lookahead buffer in the limiter, padding adjustment on a buffer, etc.) it should be fixed at the time that the object is instantiated.
These Parameters need to be settable in the ctor, e.g. by passing in N pairs of name and value. After that they should only be gettable.
We will also need a way to flag this readonly with a template parameter (so writing to it can be caught at compile time).
The text was updated successfully, but these errors were encountered:
We have a need for Parameters that are Read-Only. For example, if we have some object that is doing mem allocation (lookahead buffer in the limiter, padding adjustment on a buffer, etc.) it should be fixed at the time that the object is instantiated.
These Parameters need to be settable in the ctor, e.g. by passing in N pairs of name and value. After that they should only be gettable.
We will also need a way to flag this readonly with a template parameter (so writing to it can be caught at compile time).
The text was updated successfully, but these errors were encountered: