ILNumerics Ultimate VS

SizeEquality Operator (Size, InArrayInt64)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development

Note: This API is now obsolete.

'Equal' operator, compares this size with a shape vector.

[ILNumerics Core Module]

Namespace:  ILNumerics
Assembly:  ILNumerics.Core (in ILNumerics.Core.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax

public static bool operator ==(
	Size s1,
	InArray<long> s2
)

Parameters

s1
Type: ILNumericsSize
The size object.
s2
Type: ILNumericsInArrayInt64
The shape vector.

Return Value

Type: Boolean
True, if both sizes have the same shape.
Remarks

The operator is an alias for
s1.IsSameShape(s2)
.

If either one of s1 or s2 is null, the operator returns false.

[ILNumerics Core Module]

See Also

Reference