pub trait ICapeArrayRealParameterSpecification {
// Required methods
fn get_default_value(&mut self) -> Result<CapeReal, COBIAError>;
fn get_lower_bound(&mut self) -> Result<CapeReal, COBIAError>;
fn get_upper_bound(&mut self) -> Result<CapeReal, COBIAError>;
fn get_dimensionality(
&mut self,
dimensionality: &mut CapeArrayRealOut<'_>,
) -> Result<(), COBIAError>;
fn validate_element(
&mut self,
position: &CapeArrayIntegerIn<'_>,
value: CapeReal,
message: &mut CapeStringOut<'_>,
) -> Result<CapeBoolean, COBIAError>;
fn validate(
&mut self,
value: &CapeArrayRealIn<'_>,
message: &mut CapeStringOut<'_>,
) -> Result<CapeBoolean, COBIAError>;
}Expand description
ICapeArrayRealParameterSpecification
ICapeArrayRealParameterSpecification interface