Compares two ranges using the C++ standard library memcmp function. Returns 0 if the objects match exactly. Otherwise returns non-zero.
int32 Memcmp( Int32Iterator lhs, Int32Iterator rhs, int32 p_nCount )
| Parameter Type | Parameter Name | Documentation |
|---|---|---|
| <Int32Iterator> | lhs | An iterator at the start of the left-hand range. |
| <Int32Iterator> | rhs | An iterator at the start of the right-hand range. |
| int32 | p_nCount | The number of bytes to compare. This value will be clamped between 0 and the size of the LHS or RHS ranges, which is smaller. |
None published. Please look for an example in the Simdify Scripting Language code base.