Returns whether the register is a SIMD register.

Namespace: SharpAssembler.x86
Assembly: SharpAssembler x86-64 (in SharpAssembler x86-64.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static bool IsSimdRegister(
	this Register register
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function IsSimdRegister ( _
	register As Register _
) As Boolean
Visual C++
[ExtensionAttribute]
public:
static bool IsSimdRegister(
	Register register
)

Parameters

register
Type: SharpAssembler.x86..::..Register
The Register to test.

Return Value

trueTruetruetrue (True in Visual Basic) when the register is a SIMD register; otherwise, falseFalsefalsefalse (False in Visual Basic).

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Register. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

Exceptions

ExceptionCondition
System.ComponentModel..::..InvalidEnumArgumentException!(Enum.IsDefined(typeof(Register), register))

Contracts

This method is pure.
Requires
Enum.IsDefined(typeof(Register), register)

See Also