Operations
Naming rule of function operations: upper camel case + acronyms
Table 1 describes the operations of functions and their naming rules.
Operation |
Description |
Naming Rule |
|---|---|---|
Add |
Performs addition. |
Upper camel case |
AddC |
Adds a constant. |
Upper camel case. C is the acronym for constant. |
LShiftC |
Shifts to the left by a constant. |
Upper camel case. L and C are the acronyms for left and constant respectively. |
FFTInv |
Applies an inverse FFT. |
Upper camel case. FFT is short for fast Fourier transform. |
Parent topic: Naming Rules