Functions: N¶
10 functions (10 overloads) on BasicRuntime.Functions starting with N.
NAP¶
Performs the nap operation using the supplied value.
| Kind | Method (static) |
| Returns | void |
| Use case | Call Functions.NAP(...) directly (no instance required) when your code needs to perform the nap operation using the supplied value. |
How this member is tested
Act: Functions.NAP(/* a valid DynamicArray value */)
Assert: no exception is thrown and the expected side effect occurred.
Expected: No return value; verify the intended side effect occurred (state change, event raised, or exception NOT thrown for valid input).
NDOINITIALIZEOPTIONS¶
Performs the ndoinitializeoptions operation using the supplied ndoHeaderOptions.
| Kind | Method (static) |
| Returns | void |
| Use case | Call Functions.NDOINITIALIZEOPTIONS(...) directly (no instance required) when your code needs to perform the ndoinitializeoptions operation using the supplied ndoHeaderOptions. |
How this member is tested
Act: Functions.NDOINITIALIZEOPTIONS(/* a valid Hashtable value */)
Assert: no exception is thrown and the expected side effect occurred.
Expected: No return value; verify the intended side effect occurred (state change, event raised, or exception NOT thrown for valid input).
NEG¶
Performs the neg operation using the supplied value.
| Kind | Method (static) |
| Returns | DynamicArray |
| Use case | Call Functions.NEG(...) directly (no instance required) when your code needs to perform the neg operation using the supplied value. |
How this member is tested
Act: var result = Functions.NEG(/* a valid DynamicArray value */)
Assert: result is a non-null instance whose state matches expectations.
Expected: Returns an instance of DynamicArray; verify its properties reflect the expected resulting state.
NEGS¶
Performs the negs operation using the supplied value.
| Kind | Method (static) |
| Returns | DynamicArray |
| Use case | Call Functions.NEGS(...) directly (no instance required) when your code needs to perform the negs operation using the supplied value. |
How this member is tested
Act: var result = Functions.NEGS(/* a valid DynamicArray value */)
Assert: result is a non-null instance whose state matches expectations.
Expected: Returns an instance of DynamicArray; verify its properties reflect the expected resulting state.
NES¶
Performs the nes operation using the supplied array1, array2.
| Kind | Method (static) |
| Returns | DynamicArray |
| Use case | Call Functions.NES(...) directly (no instance required) when your code needs to perform the nes operation using the supplied array1, array2. |
How this member is tested
Act: var result = Functions.NES(/* a valid DynamicArray value */, /* a valid DynamicArray value */)
Assert: result is a non-null instance whose state matches expectations.
Expected: Returns an instance of DynamicArray; verify its properties reflect the expected resulting state.
NOBUF¶
Performs the nobuf operation using the supplied value.
| Kind | Method (static) |
| Returns | bool |
| Use case | Call Functions.NOBUF(...) directly (no instance required) when your code needs to perform the nobuf operation using the supplied value. |
How this member is tested
Act: var result = Functions.NOBUF(/* a valid DynamicArray value */)
Assert: result matches the expected true/false outcome.
Expected: Returns true or false, indicating the outcome of the nobuf check for the given input.
NOT¶
Performs the not operation using the supplied value.
| Kind | Method (static) |
| Returns | DynamicArray |
| Use case | Call Functions.NOT(...) directly (no instance required) when your code needs to perform the not operation using the supplied value. |
How this member is tested
Act: var result = Functions.NOT(/* a valid DynamicArray value */)
Assert: result is a non-null instance whose state matches expectations.
Expected: Returns an instance of DynamicArray; verify its properties reflect the expected resulting state.
NOTS¶
Performs the nots operation using the supplied value.
| Kind | Method (static) |
| Returns | DynamicArray |
| Use case | Call Functions.NOTS(...) directly (no instance required) when your code needs to perform the nots operation using the supplied value. |
How this member is tested
Act: var result = Functions.NOTS(/* a valid DynamicArray value */)
Assert: result is a non-null instance whose state matches expectations.
Expected: Returns an instance of DynamicArray; verify its properties reflect the expected resulting state.
NUM¶
Performs the num operation using the supplied value.
| Kind | Method (static) |
| Returns | DynamicArray |
| Use case | Call Functions.NUM(...) directly (no instance required) when your code needs to perform the num operation using the supplied value. |
How this member is tested
Act: var result = Functions.NUM(/* a valid DynamicArray value */)
Assert: result is a non-null instance whose state matches expectations.
Expected: Returns an instance of DynamicArray; verify its properties reflect the expected resulting state.
NUMS¶
Performs the nums operation using the supplied value.
| Kind | Method (static) |
| Returns | DynamicArray |
| Use case | Call Functions.NUMS(...) directly (no instance required) when your code needs to perform the nums operation using the supplied value. |
How this member is tested
Act: var result = Functions.NUMS(/* a valid DynamicArray value */)
Assert: result is a non-null instance whose state matches expectations.
Expected: Returns an instance of DynamicArray; verify its properties reflect the expected resulting state.