pub struct ScalableMaskedSubFOperation<'c> { /* private fields */ }
Expand description
A masked.subf
operation. Masked subtraction for scalable vectors of floats.
The arm_sve.masked.subf
operation takes one scalable vector mask
and two scalable vector operands, and perform floating point subtraction on active lanes. Inactive lanes will keep the value of
the first operand.
Implementations§
source§impl<'c> ScalableMaskedSubFOperation<'c>
impl<'c> ScalableMaskedSubFOperation<'c>
sourcepub fn as_operation(&self) -> &Operation<'c>
pub fn as_operation(&self) -> &Operation<'c>
Returns a generic operation.
sourcepub fn builder(
context: &'c Context,
location: Location<'c>
) -> ScalableMaskedSubFOperationBuilder<'c, Unset, Unset, Unset, Unset>
pub fn builder( context: &'c Context, location: Location<'c> ) -> ScalableMaskedSubFOperationBuilder<'c, Unset, Unset, Unset, Unset>
Creates a builder.
pub fn res(&self) -> Result<OperationResult<'c, '_>, Error>
pub fn mask(&self) -> Result<Value<'c, '_>, Error>
pub fn src_1(&self) -> Result<Value<'c, '_>, Error>
pub fn src_2(&self) -> Result<Value<'c, '_>, Error>
Trait Implementations§
source§impl<'c> From<ScalableMaskedSubFOperation<'c>> for Operation<'c>
impl<'c> From<ScalableMaskedSubFOperation<'c>> for Operation<'c>
source§fn from(operation: ScalableMaskedSubFOperation<'c>) -> Self
fn from(operation: ScalableMaskedSubFOperation<'c>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'c> RefUnwindSafe for ScalableMaskedSubFOperation<'c>
impl<'c> !Send for ScalableMaskedSubFOperation<'c>
impl<'c> !Sync for ScalableMaskedSubFOperation<'c>
impl<'c> Unpin for ScalableMaskedSubFOperation<'c>
impl<'c> UnwindSafe for ScalableMaskedSubFOperation<'c>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more