|
AFAPI array | sum (const array &in, const int dim=-1) |
| C++ Interface for sum of elements in an array. More...
|
|
AFAPI array | sum (const array &in, const int dim, const double nanval) |
| C++ Interface for sum of elements in an array while replacing nan values. More...
|
|
AFAPI array | product (const array &in, const int dim=-1) |
| C++ Interface for product of elements in an array. More...
|
|
AFAPI array | product (const array &in, const int dim, const double nanval) |
| C++ Interface for product of elements in an array while replacing nan values. More...
|
|
AFAPI array | min (const array &in, const int dim=-1) |
| C++ Interface for minimum values in an array. More...
|
|
AFAPI array | max (const array &in, const int dim=-1) |
| C++ Interface for maximum values in an array. More...
|
|
AFAPI array | allTrue (const array &in, const int dim=-1) |
| C++ Interface for checking all true values in an array. More...
|
|
AFAPI array | anyTrue (const array &in, const int dim=-1) |
| C++ Interface for checking any true values in an array. More...
|
|
AFAPI array | count (const array &in, const int dim=-1) |
| C++ Interface for counting non-zero values in an array. More...
|
|
template<typename T > |
T | sum (const array &in) |
| C++ Interface for sum of all elements in an array. More...
|
|
template<typename T > |
T | sum (const array &in, double nanval) |
| C++ Interface for sum of all elements in an array while replacing nan values. More...
|
|
template<typename T > |
T | product (const array &in) |
| C++ Interface for product of all elements in an array. More...
|
|
template<typename T > |
T | product (const array &in, double nanval) |
| C++ Interface for product of all elements in an array while replacing nan values. More...
|
|
template<typename T > |
T | min (const array &in) |
| C++ Interface for getting minimum value of an array. More...
|
|
template<typename T > |
T | max (const array &in) |
| C++ Interface for getting maximum value of an array. More...
|
|
template<typename T > |
T | allTrue (const array &in) |
| C++ Interface for checking if all values in an array are true. More...
|
|
template<typename T > |
T | anyTrue (const array &in) |
| C++ Interface for checking if any values in an array are true. More...
|
|
template<typename T > |
T | count (const array &in) |
| C++ Interface for counting total number of non-zero values in an array. More...
|
|
AFAPI void | min (array &val, array &idx, const array &in, const int dim=-1) |
| C++ Interface for getting minimum values and their locations in an array. More...
|
|
AFAPI void | max (array &val, array &idx, const array &in, const int dim=-1) |
| C++ Interface for getting maximum values and their locations in an array. More...
|
|
template<typename T > |
void | min (T *val, unsigned *idx, const array &in) |
| C++ Interface for getting minimum value and its location from the entire array. More...
|
|
template<typename T > |
void | max (T *val, unsigned *idx, const array &in) |
| C++ Interface for getting maximum value and its location from the entire array. More...
|
|
AFAPI array | accum (const array &in, const int dim=0) |
| C++ Interface exclusive sum (cumulative sum) of an array. More...
|
|
AFAPI array | where (const array &in) |
| C++ Interface for finding the locations of non-zero values in an array. More...
|
|
AFAPI array | diff1 (const array &in, const int dim=0) |
| C++ Interface for calculating first order differences in an array. More...
|
|
AFAPI array | diff2 (const array &in, const int dim=0) |
| C++ Interface for calculating second order differences in an array. More...
|
|
AFAPI array | sort (const array &in, const unsigned dim=0, const bool isAscending=true) |
| C++ Interface for sorting an array. More...
|
|
AFAPI void | sort (array &out, array &indices, const array &in, const unsigned dim=0, const bool isAscending=true) |
| C++ Interface for sorting an array and getting original indices. More...
|
|
AFAPI void | sort (array &out_keys, array &out_values, const array &keys, const array &values, const unsigned dim=0, const bool isAscending=true) |
| C++ Interface for sorting an array based on keys. More...
|
|
AFAPI array | setUnique (const array &in, const bool is_sorted=false) |
| C++ Interface for getting unique values. More...
|
|
AFAPI array | setUnion (const array &first, const array &second, const bool is_unique=false) |
| C++ Interface for performing union of two arrays. More...
|
|
AFAPI array | setIntersect (const array &first, const array &second, const bool is_unique=false) |
| C++ Interface for performing intersect of two arrays. More...
|
|
AFAPI array | abs (const array &in) |
| C++ Interface for absolute value. More...
|
|
AFAPI array | arg (const array &in) |
| C++ Interface for arg. More...
|
|
AFAPI array | sign (const array &in) |
| C++ Interface for getting the sign of input. More...
|
|
AFAPI array | round (const array &in) |
| C++ Interface for rounding an array of numbers. More...
|
|
AFAPI array | trunc (const array &in) |
| C++ Interface for truncating an array of numbers. More...
|
|
AFAPI array | floor (const array &in) |
| C++ Interface for flooring an array of numbers. More...
|
|
AFAPI array | ceil (const array &in) |
| C++ Interface for ceiling an array of numbers. More...
|
|
AFAPI array | sin (const array &in) |
| C++ Interface for sin. More...
|
|
AFAPI array | cos (const array &in) |
| C++ Interface for cos. More...
|
|
AFAPI array | tan (const array &in) |
| C++ Interface for tan. More...
|
|
AFAPI array | asin (const array &in) |
| C++ Interface for arc sin (sin inverse) More...
|
|
AFAPI array | acos (const array &in) |
| C++ Interface for arc cos (cos inverse) More...
|
|
AFAPI array | atan (const array &in) |
| C++ Interface for arc tan (tan inverse) More...
|
|
AFAPI array | real (const array &in) |
| C++ Interface for getting real part from complex array. More...
|
|
AFAPI array | imag (const array &in) |
| C++ Interface for getting imaginary part from complex array. More...
|
|
AFAPI array | conjg (const array &in) |
| C++ Interface for getting the complex conjugate of input array. More...
|
|
AFAPI array | sinh (const array &in) |
| C++ Interface for sinh. More...
|
|
AFAPI array | cosh (const array &in) |
| C++ Interface for cosh. More...
|
|
AFAPI array | tanh (const array &in) |
| C++ Interface for tanh. More...
|
|
AFAPI array | asinh (const array &in) |
| C++ Interface for sinh inverse. More...
|
|
AFAPI array | acosh (const array &in) |
| C++ Interface for cosh inverse. More...
|
|
AFAPI array | atanh (const array &in) |
| C++ Interface for tanh inverse. More...
|
|
AFAPI array | root (const array &lhs, const array &rhs) |
| C++ Interface for nth root. More...
|
|
AFAPI array | root (const array &lhs, const double rhs) |
| C++ Interface for nth root. More...
|
|
AFAPI array | root (const double lhs, const array &rhs) |
| C++ Interface for nth root. More...
|
|
AFAPI array | sigmoid (const array &in) |
| C++ Interface for calculating sigmoid function of an array. More...
|
|
AFAPI array | exp (const array &in) |
| C++ Interface for exponential of an array. More...
|
|
AFAPI array | expm1 (const array &in) |
| C++ Interface for exponential of an array minus 1. More...
|
|
AFAPI array | erf (const array &in) |
| C++ Interface for error function value. More...
|
|
AFAPI array | erfc (const array &in) |
| C++ Interface for complementary error function value. More...
|
|
AFAPI array | log (const array &in) |
| C++ Interface for natural logarithm. More...
|
|
AFAPI array | log1p (const array &in) |
| C++ Interface for natural logarithm of 1 + input. More...
|
|
AFAPI array | log10 (const array &in) |
| C++ Interface for logarithm base 10. More...
|
|
AFAPI array | log2 (const array &in) |
| C++ Interface for logarithm base 2. More...
|
|
AFAPI array | sqrt (const array &in) |
| C++ Interface for square root of input. More...
|
|
AFAPI array | cbrt (const array &in) |
| C++ Interface for cube root of input. More...
|
|
AFAPI array | factorial (const array &in) |
| C++ Interface for factorial of input. More...
|
|
AFAPI array | tgamma (const array &in) |
| C++ Interface for gamma function of input. More...
|
|
AFAPI array | lgamma (const array &in) |
| C++ Interface for logarithm of absolute value of gamma function of input. More...
|
|
AFAPI array | iszero (const array &in) |
| C++ Interface for checking if values are zero. More...
|
|
AFAPI array | isInf (const array &in) |
| C++ Interface for checking if values are Infinities. More...
|
|
AFAPI array | isNaN (const array &in) |
| C++ Interface for checking if values are NaNs. More...
|
|
AFAPI void | setBackend (const Backend bknd) |
|
AFAPI unsigned | getBackendCount () |
|
AFAPI int | getAvailableBackends () |
|
AFAPI af::Backend | getBackendId (const array &in) |
|
AFAPI af::Backend | getActiveBackend () |
|
AFAPI int | getDeviceId (const array &in) |
|
AFAPI array | matmul (const array &lhs, const array &rhs, const matProp optLhs=AF_MAT_NONE, const matProp optRhs=AF_MAT_NONE) |
| Matrix multiply of two arrays. More...
|
|
AFAPI array | matmulNT (const array &lhs, const array &rhs) |
| Matrix multiply of two arrays. More...
|
|
AFAPI array | matmulTN (const array &lhs, const array &rhs) |
| Matrix multiply of two arrays. More...
|
|
AFAPI array | matmulTT (const array &lhs, const array &rhs) |
| Matrix multiply of two arrays. More...
|
|
AFAPI array | matmul (const array &a, const array &b, const array &c) |
| Chain 2 matrix multiplications. More...
|
|
AFAPI array | matmul (const array &a, const array &b, const array &c, const array &d) |
| Chain 3 matrix multiplications. More...
|
|
AFAPI array | dot (const array &lhs, const array &rhs, const matProp optLhs=AF_MAT_NONE, const matProp optRhs=AF_MAT_NONE) |
| Dot Product. More...
|
|
AFAPI array | transpose (const array &in, const bool conjugate=false) |
| Transposes a matrix. More...
|
|
AFAPI void | transposeInPlace (array &in, const bool conjugate=false) |
| Transposes a matrix in-place. More...
|
|
AFAPI int | devicecount () |
| Gets the number of devices. More...
|
|
AFAPI int | deviceget () |
| Gets the current device ID. More...
|
|
AFAPI void | deviceset (const int device) |
| Sets the current device. More...
|
|
AFAPI array | loadimage (const char *filename, const bool is_color=false) |
| C++ Interface for loading an image. More...
|
|
AFAPI void | saveimage (const char *filename, const array &in) |
| C++ Interface for saving an image. More...
|
|
AFAPI array | gaussiankernel (const int rows, const int cols, const double sig_r=0, const double sig_c=0) |
| Creates a Gaussian Kernel. More...
|
|
template<typename T > |
T | alltrue (const array &in) |
| C++ Interface for checking if all values in an array are true. More...
|
|
template<typename T > |
T | anytrue (const array &in) |
| C++ Interface for checking if all values in an array are true. More...
|
|
AFAPI array | alltrue (const array &in, const int dim=-1) |
| C++ Interface for checking all true values in an array. More...
|
|
AFAPI array | anytrue (const array &in, const int dim=-1) |
| C++ Interface for checking any true values in an array. More...
|
|
AFAPI array | setunique (const array &in, const bool is_sorted=false) |
| C++ Interface for getting unique values. More...
|
|
AFAPI array | setunion (const array &first, const array &second, const bool is_unique=false) |
| C++ Interface for performing union of two arrays. More...
|
|
AFAPI array | setintersect (const array &first, const array &second, const bool is_unique=false) |
| C++ Interface for performing intersect of two arrays. More...
|
|
AFAPI array | histequal (const array &in, const array &hist) |
| C++ Interface for histogram equalization. More...
|
|
AFAPI array | colorspace (const array &image, const CSpace to, const CSpace from) |
| C++ Interface wrapper for colorspace conversion. More...
|
|
AFAPI array | filter (const array &image, const array &kernel) |
| Image Filtering. More...
|
|
AFAPI array | mul (const array &in, const int dim=-1) |
| C++ Interface for product of elements in an array. More...
|
|
template<typename T > |
T | mul (const array &in) |
| C++ Interface for product of all elements in an array. More...
|
|
AFAPI void | deviceprop (char *d_name, char *d_platform, char *d_toolkit, char *d_compute) |
| Gets the information about device and platform as strings. More...
|
|
AFAPI float | real (af_cfloat val) |
|
AFAPI double | real (af_cdouble val) |
|
AFAPI float | imag (af_cfloat val) |
|
AFAPI double | imag (af_cdouble val) |
|
AFAPI af::cfloat | operator+ (const af::cfloat &lhs, const af::cfloat &rhs) |
|
AFAPI af::cdouble | operator+ (const af::cdouble &lhs, const af::cdouble &rhs) |
|
AFAPI af::cfloat | operator- (const af::cfloat &lhs, const af::cfloat &rhs) |
|
AFAPI af::cdouble | operator- (const af::cdouble &lhs, const af::cdouble &rhs) |
|
AFAPI af::cfloat | operator* (const af::cfloat &lhs, const af::cfloat &rhs) |
|
AFAPI af::cdouble | operator* (const af::cdouble &lhs, const af::cdouble &rhs) |
|
AFAPI af::cfloat | operator/ (const af::cfloat &lhs, const af::cfloat &rhs) |
|
AFAPI af::cdouble | operator/ (const af::cdouble &lhs, const af::cdouble &rhs) |
|
AFAPI af::cfloat | operator+ (const af::cfloat &lhs, const double &rhs) |
|
AFAPI af::cdouble | operator+ (const af::cdouble &lhs, const double &rhs) |
|
AFAPI af::cfloat | operator/ (const af::cfloat &lhs, const double &rhs) |
|
AFAPI af::cdouble | operator/ (const af::cdouble &lhs, const double &rhs) |
|
AFAPI af::cfloat | operator- (const af::cfloat &lhs, const double &rhs) |
|
AFAPI af::cdouble | operator- (const af::cdouble &lhs, const double &rhs) |
|
AFAPI af::cfloat | operator* (const af::cfloat &lhs, const double &rhs) |
|
AFAPI af::cdouble | operator* (const af::cdouble &lhs, const double &rhs) |
|
AFAPI af::cfloat | operator+ (const double &rhs, const af::cfloat &lhs) |
|
AFAPI af::cdouble | operator+ (const double &rhs, const af::cdouble &lhs) |
|
AFAPI af::cdouble | operator+ (const af::cfloat &lhs, const af::cdouble &rhs) |
|
AFAPI af::cdouble | operator+ (const af::cdouble &lhs, const af::cfloat &rhs) |
|
AFAPI af::cfloat | operator- (const double &rhs, const af::cfloat &lhs) |
|
AFAPI af::cdouble | operator- (const double &rhs, const af::cdouble &lhs) |
|
AFAPI af::cdouble | operator- (const af::cfloat &lhs, const af::cdouble &rhs) |
|
AFAPI af::cdouble | operator- (const af::cdouble &lhs, const af::cfloat &rhs) |
|
AFAPI af::cfloat | operator* (const double &rhs, const af::cfloat &lhs) |
|
AFAPI af::cdouble | operator* (const double &rhs, const af::cdouble &lhs) |
|
AFAPI af::cdouble | operator* (const af::cfloat &lhs, const af::cdouble &rhs) |
|
AFAPI af::cdouble | operator* (const af::cdouble &lhs, const af::cfloat &rhs) |
|
AFAPI af::cfloat | operator/ (const double &rhs, const af::cfloat &lhs) |
|
AFAPI af::cdouble | operator/ (const double &rhs, const af::cdouble &lhs) |
|
AFAPI af::cdouble | operator/ (const af::cfloat &lhs, const af::cdouble &rhs) |
|
AFAPI af::cdouble | operator/ (const af::cdouble &lhs, const af::cfloat &rhs) |
|
AFAPI bool | operator== (const cfloat &lhs, const cfloat &rhs) |
|
AFAPI bool | operator== (const cdouble &lhs, const cdouble &rhs) |
|
AFAPI bool | operator!= (const cfloat &lhs, const cfloat &rhs) |
|
AFAPI bool | operator!= (const cdouble &lhs, const cdouble &rhs) |
|
AFAPI std::istream & | operator>> (std::istream &is, cfloat &in) |
|
AFAPI std::istream & | operator>> (std::istream &is, cdouble &in) |
|
AFAPI std::ostream & | operator<< (std::ostream &os, const cfloat &in) |
|
AFAPI std::ostream & | operator<< (std::ostream &os, const cdouble &in) |
|
AFAPI float | abs (const cfloat &val) |
|
AFAPI double | abs (const cdouble &val) |
|
AFAPI cfloat | conj (const cfloat &val) |
|
AFAPI cdouble | conj (const cdouble &val) |
|
template<typename T > |
array | constant (T val, const dim4 &dims, const dtype ty=(af_dtype) dtype_traits< T >::ctype) |
|
template<typename T > |
array | constant (T val, const dim_t d0, const af_dtype ty=(af_dtype) dtype_traits< T >::ctype) |
|
template<typename T > |
array | constant (T val, const dim_t d0, const dim_t d1, const af_dtype ty=(af_dtype) dtype_traits< T >::ctype) |
|
template<typename T > |
array | constant (T val, const dim_t d0, const dim_t d1, const dim_t d2, const af_dtype ty=(af_dtype) dtype_traits< T >::ctype) |
|
template<typename T > |
array | constant (T val, const dim_t d0, const dim_t d1, const dim_t d2, const dim_t d3, const af_dtype ty=(af_dtype) dtype_traits< T >::ctype) |
|
AFAPI array | randu (const dim4 &dims, const dtype ty=f32) |
|
AFAPI array | randu (const dim_t d0, const dtype ty=f32) |
|
AFAPI array | randu (const dim_t d0, const dim_t d1, const dtype ty=f32) |
|
AFAPI array | randu (const dim_t d0, const dim_t d1, const dim_t d2, const dtype ty=f32) |
|
AFAPI array | randu (const dim_t d0, const dim_t d1, const dim_t d2, const dim_t d3, const dtype ty=f32) |
|
AFAPI array | randn (const dim4 &dims, const dtype ty=f32) |
|
AFAPI array | randn (const dim_t d0, const dtype ty=f32) |
|
AFAPI array | randn (const dim_t d0, const dim_t d1, const dtype ty=f32) |
|
AFAPI array | randn (const dim_t d0, const dim_t d1, const dim_t d2, const dtype ty=f32) |
|
AFAPI array | randn (const dim_t d0, const dim_t d1, const dim_t d2, const dim_t d3, const dtype ty=f32) |
|
AFAPI void | setSeed (const uintl seed) |
|
AFAPI uintl | getSeed () |
|
AFAPI array | identity (const dim4 &dims, const dtype ty=f32) |
|
AFAPI array | identity (const dim_t d0, const dtype ty=f32) |
|
AFAPI array | identity (const dim_t d0, const dim_t d1, const dtype ty=f32) |
|
AFAPI array | identity (const dim_t d0, const dim_t d1, const dim_t d2, const dtype ty=f32) |
|
AFAPI array | identity (const dim_t d0, const dim_t d1, const dim_t d2, const dim_t d3, const dtype ty=f32) |
|
AFAPI array | range (const dim4 &dims, const int seq_dim=-1, const dtype ty=f32) |
|
AFAPI array | range (const dim_t d0, const dim_t d1=1, const dim_t d2=1, const dim_t d3=1, const int seq_dim=-1, const dtype ty=f32) |
|
AFAPI array | iota (const dim4 &dims, const dim4 &tile_dims=dim4(1), const dtype ty=f32) |
|
AFAPI array | diag (const array &in, const int num=0, const bool extract=true) |
|
AFAPI array | join (const int dim, const array &first, const array &second) |
| Join 2 arrays along dim . More...
|
|
AFAPI array | join (const int dim, const array &first, const array &second, const array &third) |
| Join 3 arrays along dim . More...
|
|
AFAPI array | join (const int dim, const array &first, const array &second, const array &third, const array &fourth) |
| Join 4 arrays along dim . More...
|
|
AFAPI array | tile (const array &in, const unsigned x, const unsigned y=1, const unsigned z=1, const unsigned w=1) |
|
AFAPI array | tile (const array &in, const dim4 &dims) |
|
AFAPI array | reorder (const array &in, const unsigned x, const unsigned y=1, const unsigned z=2, const unsigned w=3) |
|
AFAPI array | shift (const array &in, const int x, const int y=0, const int z=0, const int w=0) |
|
AFAPI array | moddims (const array &in, const unsigned ndims, const dim_t *const dims) |
|
AFAPI array | moddims (const array &in, const dim4 &dims) |
|
AFAPI array | moddims (const array &in, const dim_t d0, const dim_t d1=1, const dim_t d2=1, const dim_t d3=1) |
|
AFAPI array | flat (const array &in) |
|
AFAPI array | flip (const array &in, const unsigned dim) |
|
AFAPI array | lower (const array &in, bool is_unit_diag=false) |
|
AFAPI array | upper (const array &in, bool is_unit_diag=false) |
|
AFAPI array | select (const array &cond, const array &a, const array &b) |
|
AFAPI array | select (const array &cond, const array &a, const double &b) |
|
AFAPI array | select (const array &cond, const double &a, const array &b) |
|
AFAPI void | replace (array &a, const array &cond, const array &b) |
|
AFAPI void | replace (array &a, const array &cond, const double &b) |
|
AFAPI void | info () |
|
AFAPI const char * | infoString (const bool verbose=false) |
|
AFAPI void | deviceInfo (char *d_name, char *d_platform, char *d_toolkit, char *d_compute) |
| Gets the information about device and platform as strings. More...
|
|
AFAPI int | getDeviceCount () |
| Gets the number of devices. More...
|
|
AFAPI int | getDevice () |
| Gets the current device ID. More...
|
|
AFAPI bool | isDoubleAvailable (const int device) |
| Queries the current device for double precision floating point support. More...
|
|
AFAPI void | setDevice (const int device) |
| Sets the current device. More...
|
|
AFAPI void | sync (const int device=-1) |
| Blocks until the device is finished processing. More...
|
|
AFAPI void | free (const void *ptr) |
| Free device memory allocated by ArrayFire's memory manager. More...
|
|
AFAPI void | freePinned (const void *ptr) |
| Free pinned memory allocated by ArrayFire's memory manager. More...
|
|
AFAPI void * | allocHost (const size_t elements, const dtype type) |
| Allocate memory on host. More...
|
|
template<typename T > |
AFAPI T * | allocHost (const size_t elements) |
| Allocate memory on host. More...
|
|
AFAPI void | freeHost (const void *ptr) |
| Free memory allocated internally by ArrayFire. More...
|
|
AFAPI void | setMemStepSize (const size_t size) |
| Set the resolution of memory chunks. More...
|
|
AFAPI size_t | getMemStepSize () |
| Get the resolution of memory chunks. More...
|
|
AFAPI dim4 | operator+ (const dim4 &first, const dim4 &second) |
|
AFAPI dim4 | operator- (const dim4 &first, const dim4 &second) |
|
AFAPI dim4 | operator* (const dim4 &first, const dim4 &second) |
|
static std::ostream & | operator<< (std::ostream &ostr, const dim4 &dims) |
|
static std::istream & | operator>> (std::istream &istr, dim4 &dims) |
|
AFAPI bool | isSpan (const af_seq &seq) |
|
AFAPI size_t | seqElements (const af_seq &seq) |
|
AFAPI dim_t | calcDim (const af_seq &seq, const dim_t &parentDim) |
|
AFAPI bool | gforToggle () |
|
AFAPI bool | gforGet () |
|
AFAPI void | gforSet (bool val) |
|
AFAPI array | batchFunc (const array &lhs, const array &rhs, batchFunc_t func) |
|
AFAPI void | grad (array &dx, array &dy, const array &in) |
| C++ Interface for calculating the gradients. More...
|
|
AFAPI array | loadImage (const char *filename, const bool is_color=false) |
| C++ Interface for loading an image. More...
|
|
AFAPI void | saveImage (const char *filename, const array &in) |
| C++ Interface for saving an image. More...
|
|
AFAPI array | loadImageMem (const void *ptr) |
| C++ Interface for loading an image from memory. More...
|
|
AFAPI void * | saveImageMem (const array &in, const imageFormat format=AF_FIF_PNG) |
| C++ Interface for saving an image to memory. More...
|
|
AFAPI void | deleteImageMem (void *ptr) |
| C++ Interface for deleting memory created by saveImageMem or af_save_image_memory. More...
|
|
AFAPI array | loadImageNative (const char *filename) |
| C++ Interface for loading an image as its original type. More...
|
|
AFAPI void | saveImageNative (const char *filename, const array &in) |
| C++ Interface for saving an image without modifications. More...
|
|
AFAPI bool | isImageIOAvailable () |
| Function to check if Image IO is available. More...
|
|
AFAPI array | resize (const array &in, const dim_t odim0, const dim_t odim1, const interpType method=AF_INTERP_NEAREST) |
| C++ Interface for resizing an image to specified dimensions. More...
|
|
AFAPI array | resize (const float scale0, const float scale1, const array &in, const interpType method=AF_INTERP_NEAREST) |
| C++ Interface for resizing an image to specified scales. More...
|
|
AFAPI array | resize (const float scale, const array &in, const interpType method=AF_INTERP_NEAREST) |
| C++ Interface for resizing an image to specified scale. More...
|
|
AFAPI array | rotate (const array &in, const float theta, const bool crop=true, const interpType method=AF_INTERP_NEAREST) |
| C++ Interface for rotating an image. More...
|
|
AFAPI array | transform (const array &in, const array &transform, const dim_t odim0=0, const dim_t odim1=0, const interpType method=AF_INTERP_NEAREST, const bool inverse=true) |
| C++ Interface for transforming an image. More...
|
|
AFAPI array | transformCoordinates (const array &tf, const float d0, const float d1) |
| C++ Interface for transforming coordinates. More...
|
|
AFAPI array | translate (const array &in, const float trans0, const float trans1, const dim_t odim0=0, const dim_t odim1=0, const interpType method=AF_INTERP_NEAREST) |
| C++ Interface for translating an image. More...
|
|
AFAPI array | scale (const array &in, const float scale0, const float scale1, const dim_t odim0=0, const dim_t odim1=0, const interpType method=AF_INTERP_NEAREST) |
| C++ Interface for scaling an image. More...
|
|
AFAPI array | skew (const array &in, const float skew0, const float skew1, const dim_t odim0=0, const dim_t odim1=0, const bool inverse=true, const interpType method=AF_INTERP_NEAREST) |
| C++ Interface for skewing an image. More...
|
|
AFAPI array | bilateral (const array &in, const float spatial_sigma, const float chromatic_sigma, const bool is_color=false) |
| C++ Interface for bilateral filter. More...
|
|
AFAPI array | histogram (const array &in, const unsigned nbins, const double minval, const double maxval) |
| C++ Interface for histogram. More...
|
|
AFAPI array | histogram (const array &in, const unsigned nbins) |
| C++ Interface for histogram. More...
|
|
AFAPI array | meanShift (const array &in, const float spatial_sigma, const float chromatic_sigma, const unsigned iter, const bool is_color=false) |
| C++ Interface for mean shift. More...
|
|
AFAPI array | medfilt (const array &in, const dim_t wind_length=3, const dim_t wind_width=3, const borderType edge_pad=AF_PAD_ZERO) |
| C++ Interface for median filter. More...
|
|
AFAPI array | minfilt (const array &in, const dim_t wind_length=3, const dim_t wind_width=3, const borderType edge_pad=AF_PAD_ZERO) |
| C++ Interface for minimum filter. More...
|
|
AFAPI array | maxfilt (const array &in, const dim_t wind_length=3, const dim_t wind_width=3, const borderType edge_pad=AF_PAD_ZERO) |
| C++ Interface for maximum filter. More...
|
|
AFAPI array | dilate (const array &in, const array &mask) |
| C++ Interface for image dilation (max filter) More...
|
|
AFAPI array | dilate3 (const array &in, const array &mask) |
| C++ Interface for 3D image dilation. More...
|
|
AFAPI array | erode (const array &in, const array &mask) |
| C++ Interface for image erosion (min filter) More...
|
|
AFAPI array | erode3 (const array &in, const array &mask) |
| C++ Interface for 3d for image erosion. More...
|
|
AFAPI array | regions (const array &in, const af::connectivity connectivity=AF_CONNECTIVITY_4, const dtype type=f32) |
| C++ Interface for getting regions in an image. More...
|
|
AFAPI void | sobel (array &dx, array &dy, const array &img, const unsigned ker_size=3) |
| C++ Interface for extracting sobel gradients. More...
|
|
AFAPI array | sobel (const array &img, const unsigned ker_size=3, const bool isFast=false) |
| C++ Interface for sobel filtering. More...
|
|
AFAPI array | rgb2gray (const array &in, const float rPercent=0.2126f, const float gPercent=0.7152f, const float bPercent=0.0722f) |
| C++ Interface for RGB to gray conversion. More...
|
|
AFAPI array | gray2rgb (const array &in, const float rFactor=1.0, const float gFactor=1.0, const float bFactor=1.0) |
| C++ Interface for gray to RGB conversion. More...
|
|
AFAPI array | histEqual (const array &in, const array &hist) |
| C++ Interface for histogram equalization. More...
|
|
AFAPI array | gaussianKernel (const int rows, const int cols, const double sig_r=0, const double sig_c=0) |
| C++ Interface for generating gausian kernels. More...
|
|
AFAPI array | hsv2rgb (const array &in) |
| C++ Interface for converting HSV to RGB. More...
|
|
AFAPI array | rgb2hsv (const array &in) |
| C++ Interface for converting RGB to HSV. More...
|
|
AFAPI array | colorSpace (const array &image, const CSpace to, const CSpace from) |
| C++ Interface wrapper for colorspace conversion. More...
|
|
AFAPI array | unwrap (const array &in, const dim_t wx, const dim_t wy, const dim_t sx, const dim_t sy, const dim_t px=0, const dim_t py=0, const bool is_column=true) |
| C++ Interface wrapper for unwrap. More...
|
|
AFAPI array | wrap (const array &in, const dim_t ox, const dim_t oy, const dim_t wx, const dim_t wy, const dim_t sx, const dim_t sy, const dim_t px=0, const dim_t py=0, const bool is_column=true) |
| C++ Interface wrapper for wrap. More...
|
|
AFAPI array | sat (const array &in) |
| C++ Interface wrapper for summed area tables. More...
|
|
AFAPI array | ycbcr2rgb (const array &in, const YCCStd standard=AF_YCC_601) |
| C++ Interface for converting YCbCr to RGB. More...
|
|
AFAPI array | rgb2ycbcr (const array &in, const YCCStd standard=AF_YCC_601) |
| C++ Interface for converting RGB to YCbCr. More...
|
|
AFAPI array | lookup (const array &in, const array &idx, const int dim=-1) |
| Lookup the values of input array based on index. More...
|
|
AFAPI void | copy (array &dst, const array &src, const index &idx0, const index &idx1=span, const index &idx2=span, const index &idx3=span) |
| Copy the values of an input array based on index. More...
|
|
AFAPI array | createStridedArray (const void *data, const dim_t offset, const dim4 dims, const dim4 strides, const af::dtype ty, const af::source location) |
|
AFAPI dim4 | getStrides (const array &in) |
|
AFAPI dim_t | getOffset (const array &in) |
|
AFAPI void * | getRawPtr (const array &in) |
|
AFAPI bool | isLinear (const array &in) |
|
AFAPI bool | isOwner (const array &in) |
|
AFAPI void | svd (array &u, array &s, array &vt, const array &in) |
| C++ Interface for SVD decomposition. More...
|
|
AFAPI void | svdInPlace (array &u, array &s, array &vt, array &in) |
| C++ Interface for SVD decomposition. More...
|
|
AFAPI void | lu (array &out, array &pivot, const array &in, const bool is_lapack_piv=true) |
| C++ Interface for LU decomposition in packed format. More...
|
|
AFAPI void | lu (array &lower, array &upper, array &pivot, const array &in) |
| C++ Interface for LU decomposition. More...
|
|
AFAPI void | luInPlace (array &pivot, array &in, const bool is_lapack_piv=true) |
| C++ Interface for in place LU decomposition. More...
|
|
AFAPI void | qr (array &out, array &tau, const array &in) |
| C++ Interface for QR decomposition in packed format. More...
|
|
AFAPI void | qr (array &q, array &r, array &tau, const array &in) |
| C++ Interface for QR decomposition. More...
|
|
AFAPI void | qrInPlace (array &tau, array &in) |
| C++ Interface for QR decomposition. More...
|
|
AFAPI int | cholesky (array &out, const array &in, const bool is_upper=true) |
| C++ Interface for cholesky decomposition. More...
|
|
AFAPI int | choleskyInPlace (array &in, const bool is_upper=true) |
| C++ Interface for in place cholesky decomposition. More...
|
|
AFAPI array | solve (const array &a, const array &b, const matProp options=AF_MAT_NONE) |
| C++ Interface for solving a system of equations. More...
|
|
AFAPI array | solveLU (const array &a, const array &piv, const array &b, const matProp options=AF_MAT_NONE) |
| C++ Interface for solving a system of equations. More...
|
|
AFAPI array | inverse (const array &in, const matProp options=AF_MAT_NONE) |
| C++ Interface for inverting a matrix. More...
|
|
AFAPI unsigned | rank (const array &in, const double tol=1E-5) |
| C++ Interface for finding the rank of a matrix. More...
|
|
template<typename T > |
T | det (const array &in) |
| C++ Interface for finding the determinant of a matrix. More...
|
|
AFAPI double | norm (const array &in, const normType type=AF_NORM_EUCLID, const double p=1, const double q=1) |
| C++ Interface for norm of a matrix. More...
|
|
AFAPI bool | isLAPACKAvailable () |
| Returns true is ArrayFire is compiled with LAPACK support. More...
|
|
AFAPI array | approx1 (const array &in, const array &pos, const interpType method=AF_INTERP_LINEAR, const float offGrid=0.0f) |
| C++ Interface for data interpolation on one dimensional signals. More...
|
|
AFAPI array | approx2 (const array &in, const array &pos0, const array &pos1, const interpType method=AF_INTERP_LINEAR, const float offGrid=0.0f) |
| C++ Interface for data interpolation on two dimensional signals. More...
|
|
AFAPI array | fftNorm (const array &in, const double norm_factor, const dim_t odim0=0) |
| C++ Interface for fast fourier transform on one dimensional signals. More...
|
|
AFAPI array | fft2Norm (const array &in, const double norm_factor, const dim_t odim0=0, const dim_t odim1=0) |
| C++ Interface for fast fourier transform on two dimensional signals. More...
|
|
AFAPI array | fft3Norm (const array &in, const double norm_factor, const dim_t odim0=0, const dim_t odim1=0, const dim_t odim2=0) |
| C++ Interface for fast fourier transform on three dimensional signals. More...
|
|
AFAPI void | fftInPlace (array &in, const double norm_factor=1) |
| C++ Interface for fast fourier transform on one dimensional signals. More...
|
|
AFAPI void | fft2InPlace (array &in, const double norm_factor=1) |
| C++ Interface for fast fourier transform on two dimensional signals. More...
|
|
AFAPI void | fft3InPlace (array &in, const double norm_factor=1) |
| C++ Interface for fast fourier transform on three dimensional signals. More...
|
|
AFAPI array | fft (const array &in, const dim_t odim0=0) |
| C++ Interface for fast fourier transform on one dimensional signals. More...
|
|
AFAPI array | fft2 (const array &in, const dim_t odim0=0, const dim_t odim1=0) |
| C++ Interface for fast fourier transform on two dimensional signals. More...
|
|
AFAPI array | fft3 (const array &in, const dim_t odim0=0, const dim_t odim1=0, const dim_t odim2=0) |
| C++ Interface for fast fourier transform on three dimensional signals. More...
|
|
AFAPI array | dft (const array &in, const double norm_factor, const dim4 outDims) |
| C++ Interface for fast fourier transform on any(1d, 2d, 3d) dimensional signals. More...
|
|
AFAPI array | dft (const array &in, const dim4 outDims) |
| C++ Interface for fast fourier transform on any(1d, 2d, 3d) dimensional signals. More...
|
|
AFAPI array | dft (const array &in) |
| C++ Interface for fast fourier transform on any(1d, 2d, 3d) dimensional signals. More...
|
|
AFAPI array | ifftNorm (const array &in, const double norm_factor, const dim_t odim0=0) |
| C++ Interface for inverse fast fourier transform on one dimensional signals. More...
|
|
AFAPI array | ifft2Norm (const array &in, const double norm_factor, const dim_t odim0=0, const dim_t odim1=0) |
| C++ Interface for inverse fast fourier transform on two dimensional signals. More...
|
|
AFAPI array | ifft3Norm (const array &in, const double norm_factor, const dim_t odim0=0, const dim_t odim1=0, const dim_t odim2=0) |
| C++ Interface for inverse fast fourier transform on three dimensional signals. More...
|
|
AFAPI void | ifftInPlace (array &in, const double norm_factor=1) |
| C++ Interface for fast fourier transform on one dimensional signals. More...
|
|
AFAPI void | ifft2InPlace (array &in, const double norm_factor=1) |
| C++ Interface for fast fourier transform on two dimensional signals. More...
|
|
AFAPI void | ifft3InPlace (array &in, const double norm_factor=1) |
| C++ Interface for fast fourier transform on three dimensional signals. More...
|
|
AFAPI array | ifft (const array &in, const dim_t odim0=0) |
| C++ Interface for inverse fast fourier transform on one dimensional signals. More...
|
|
AFAPI array | ifft2 (const array &in, const dim_t odim0=0, const dim_t odim1=0) |
| C++ Interface for inverse fast fourier transform on two dimensional signals. More...
|
|
AFAPI array | ifft3 (const array &in, const dim_t odim0=0, const dim_t odim1=0, const dim_t odim2=0) |
| C++ Interface for inverse fast fourier transform on three dimensional signals. More...
|
|
AFAPI array | idft (const array &in, const double norm_factor, const dim4 outDims) |
| C++ Interface for inverse fast fourier transform on any(1d, 2d, 3d) dimensional signals. More...
|
|
AFAPI array | idft (const array &in, const dim4 outDims) |
| C++ Interface for inverse fast fourier transform on any(1d, 2d, 3d) dimensional signals. More...
|
|
AFAPI array | idft (const array &in) |
| C++ Interface for inverse fast fourier transform on any(1d, 2d, 3d) dimensional signals. More...
|
|
template<int rank> |
array | fftR2C (const array &in, const dim4 &dims, const double norm_factor=0) |
| C++ Interface for real to complex fast fourier transform for one dimensional signals. More...
|
|
template<int rank> |
array | fftR2C (const array &in, const double norm_factor=0) |
| C++ Interface for real to complex fast fourier transform for one dimensional signals. More...
|
|
template<int rank> |
array | fftC2R (const array &in, bool is_odd=false, const double norm_factor=0) |
| C++ Interface for complex to real fast fourier transform. More...
|
|
AFAPI array | convolve (const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT, const convDomain domain=AF_CONV_AUTO) |
| C++ Interface for convolution any(one through three) dimensional signals. More...
|
|
AFAPI array | convolve (const array &col_filter, const array &row_filter, const array &signal, const convMode mode=AF_CONV_DEFAULT) |
| C++ Interface for separable convolution on two dimensional signals. More...
|
|
AFAPI array | convolve1 (const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT, const convDomain domain=AF_CONV_AUTO) |
| C++ Interface for convolution on one dimensional signals. More...
|
|
AFAPI array | convolve2 (const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT, const convDomain domain=AF_CONV_AUTO) |
| C++ Interface for convolution on two dimensional signals. More...
|
|
AFAPI array | convolve3 (const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT, const convDomain domain=AF_CONV_AUTO) |
| C++ Interface for convolution on three dimensional signals. More...
|
|
AFAPI array | fftConvolve (const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT) |
| C++ Interface for FFT-based convolution any(one through three) dimensional signals. More...
|
|
AFAPI array | fftConvolve1 (const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT) |
| C++ Interface for convolution on one dimensional signals. More...
|
|
AFAPI array | fftConvolve2 (const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT) |
| C++ Interface for convolution on two dimensional signals. More...
|
|
AFAPI array | fftConvolve3 (const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT) |
| C++ Interface for convolution on three dimensional signals. More...
|
|
AFAPI array | fir (const array &b, const array &x) |
| C++ Interface for finite impulse response filter. More...
|
|
AFAPI array | iir (const array &b, const array &a, const array &x) |
| C++ Interface for infinite impulse response filter. More...
|
|
AFAPI array | mean (const array &in, const dim_t dim=-1) |
| C++ Interface for mean. More...
|
|
AFAPI array | mean (const array &in, const array &weights, const dim_t dim=-1) |
| C++ Interface for mean of weighted inputs. More...
|
|
AFAPI array | var (const array &in, const bool isbiased=false, const dim_t dim=-1) |
| C++ Interface for variance. More...
|
|
AFAPI array | var (const array &in, const array &weights, const dim_t dim=-1) |
| C++ Interface for variance of weighted inputs. More...
|
|
AFAPI array | stdev (const array &in, const dim_t dim=-1) |
| C++ Interface for standard deviation. More...
|
|
AFAPI array | cov (const array &X, const array &Y, const bool isbiased=false) |
| C++ Interface for covariance. More...
|
|
AFAPI array | median (const array &in, const dim_t dim=-1) |
| C++ Interface for median. More...
|
|
template<typename T > |
AFAPI T | mean (const array &in) |
| C++ Interface for mean of all elements. More...
|
|
template<typename T > |
AFAPI T | mean (const array &in, const array &weights) |
| C++ Interface for mean of all elements in weighted input. More...
|
|
template<typename T > |
AFAPI T | var (const array &in, const bool isbiased=false) |
| C++ Interface for variance of all elements. More...
|
|
template<typename T > |
AFAPI T | var (const array &in, const array &weights) |
| C++ Interface for variance of all elements in weighted input. More...
|
|
template<typename T > |
AFAPI T | stdev (const array &in) |
| C++ Interface for standard deviation of all elements. More...
|
|
template<typename T > |
AFAPI T | median (const array &in) |
| C++ Interface for median of all elements. More...
|
|
template<typename T > |
AFAPI T | corrcoef (const array &X, const array &Y) |
| C++ Interface for correlation coefficient. More...
|
|
AFAPI double | timeit (void(*fn)()) |
|
AFAPI void | print (const char *exp, const array &arr) |
|
AFAPI void | print (const char *exp, const array &arr, const int precision) |
|
AFAPI int | saveArray (const char *key, const array &arr, const char *filename, const bool append=false) |
|
AFAPI array | readArray (const char *filename, const unsigned index) |
|
AFAPI array | readArray (const char *filename, const char *key) |
|
AFAPI int | readArrayCheck (const char *filename, const char *key) |
| When reading by key, it may be a good idea to run this function first to check for the key and then call the readArray using the index. More...
|
|
AFAPI void | toString (char **output, const char *exp, const array &arr, const int precision=4, const bool transpose=true) |
|
AFAPI const char * | toString (const char *exp, const array &arr, const int precision=4, const bool transpose=true) |
|
AFAPI array | exampleFunction (const array &in, const af_someenum_t param) |
|
AFAPI features | fast (const array &in, const float thr=20.0f, const unsigned arc_length=9, const bool non_max=true, const float feature_ratio=0.05, const unsigned edge=3) |
| C++ Interface for FAST feature detector. More...
|
|
AFAPI features | harris (const array &in, const unsigned max_corners=500, const float min_response=1e5f, const float sigma=1.f, const unsigned block_size=0, const float k_thr=0.04f) |
| C++ Interface for Harris corner detector. More...
|
|
AFAPI void | orb (features &feat, array &desc, const array &image, const float fast_thr=20.f, const unsigned max_feat=400, const float scl_fctr=1.5f, const unsigned levels=4, const bool blur_img=false) |
| C++ Interface for ORB feature descriptor. More...
|
|
AFAPI void | sift (features &feat, array &desc, const array &in, const unsigned n_layers=3, const float contrast_thr=0.04f, const float edge_thr=10.f, const float init_sigma=1.6f, const bool double_input=true, const float intensity_scale=0.00390625f, const float feature_ratio=0.05f) |
| C++ Interface for SIFT feature detector and descriptor. More...
|
|
AFAPI void | gloh (features &feat, array &desc, const array &in, const unsigned n_layers=3, const float contrast_thr=0.04f, const float edge_thr=10.f, const float init_sigma=1.6f, const bool double_input=true, const float intensity_scale=0.00390625f, const float feature_ratio=0.05f) |
| C++ Interface for SIFT feature detector and GLOH descriptor. More...
|
|
AFAPI void | hammingMatcher (array &idx, array &dist, const array &query, const array &train, const dim_t dist_dim=0, const unsigned n_dist=1) |
| C++ Interface wrapper for Hamming matcher. More...
|
|
AFAPI void | nearestNeighbour (array &idx, array &dist, const array &query, const array &train, const dim_t dist_dim=0, const unsigned n_dist=1, const af_match_type dist_type=AF_SSD) |
| C++ Interface wrapper for Nearest Neighbour. More...
|
|
AFAPI array | matchTemplate (const array &searchImg, const array &templateImg, const matchType mType=AF_SAD) |
| C++ Interface for image template matching. More...
|
|
AFAPI features | susan (const array &in, const unsigned radius=3, const float diff_thr=32.0f, const float geom_thr=10.0f, const float feature_ratio=0.05f, const unsigned edge=3) |
| C++ Interface for SUSAN corner detector. More...
|
|
AFAPI array | dog (const array &in, const int radius1, const int radius2) |
| C++ Interface wrapper for Difference of Gaussians. More...
|
|
AFAPI void | homography (array &H, int &inliers, const array &x_src, const array &y_src, const array &x_dst, const array &y_dst, const af_homography_type htype=AF_HOMOGRAPHY_RANSAC, const float inlier_thr=3.f, const unsigned iterations=1000, const dtype otype=f32) |
| C++ Interface for Homography estimation. More...
|
|
|
AFAPI array | min (const array &lhs, const array &rhs) |
| C++ interface for min of two arrays. More...
|
|
AFAPI array | min (const array &lhs, const double rhs) |
| C++ interface for min of two arrays. More...
|
|
AFAPI array | min (const double lhs, const array &rhs) |
| C++ interface for min of two arrays. More...
|
|
|
AFAPI array | max (const array &lhs, const array &rhs) |
| C++ Interface for max of two arrays or an array and a scalar. More...
|
|
AFAPI array | max (const array &lhs, const double rhs) |
| C++ Interface for max of two arrays or an array and a scalar. More...
|
|
AFAPI array | max (const double lhs, const array &rhs) |
| C++ Interface for max of two arrays or an array and a scalar. More...
|
|
|
AFAPI array | rem (const array &lhs, const array &rhs) |
| C++ Interface for remainder when array divides array, scalar divides array or array divides scalar. More...
|
|
AFAPI array | rem (const array &lhs, const double rhs) |
| C++ Interface for remainder when array divides array, scalar divides array or array divides scalar. More...
|
|
AFAPI array | rem (const double lhs, const array &rhs) |
| C++ Interface for remainder when array divides array, scalar divides array or array divides scalar. More...
|
|
|
AFAPI array | mod (const array &lhs, const array &rhs) |
| C++ Interface for modulus when dividend and divisor are arrays or one of them is scalar. More...
|
|
AFAPI array | mod (const array &lhs, const double rhs) |
| C++ Interface for modulus when dividend and divisor are arrays or one of them is scalar. More...
|
|
AFAPI array | mod (const double lhs, const array &rhs) |
| C++ Interface for modulus when dividend and divisor are arrays or one of them is scalar. More...
|
|
|
AFAPI array | hypot (const array &lhs, const array &rhs) |
| C++ Interface for getting length of hypotenuse of two inputs. More...
|
|
AFAPI array | hypot (const array &lhs, const double rhs) |
| C++ Interface for getting length of hypotenuse of two inputs. More...
|
|
AFAPI array | hypot (const double lhs, const array &rhs) |
| C++ Interface for getting length of hypotenuse of two inputs. More...
|
|
|
AFAPI array | atan2 (const array &lhs, const array &rhs) |
| C++ Interface for arc tan of two arrays. More...
|
|
AFAPI array | atan2 (const array &lhs, const double rhs) |
| C++ Interface for arc tan of two arrays. More...
|
|
AFAPI array | atan2 (const double lhs, const array &rhs) |
| C++ Interface for arc tan of two arrays. More...
|
|
|
AFAPI array | complex (const array &lhs, const array &rhs) |
| C++ Interface for creating complex array from two inputs. More...
|
|
AFAPI array | complex (const array &lhs, const double rhs) |
| C++ Interface for creating complex array from two inputs. More...
|
|
AFAPI array | complex (const double lhs, const array &rhs) |
| C++ Interface for creating complex array from two inputs. More...
|
|
AFAPI array | complex (const array &in) |
| C++ Interface for creating complex array from real array. More...
|
|
|
AFAPI array | pow (const array &lhs, const array &rhs) |
| C++ Interface for power. More...
|
|
AFAPI array | pow (const array &lhs, const double rhs) |
| C++ Interface for power. More...
|
|
AFAPI array | pow (const double lhs, const array &rhs) |
| C++ Interface for power. More...
|
|
AFAPI array | pow2 (const array &in) |
| C++ Interface for power of 2. More...
|
|
|
AFAPI array | operator+ (const array &lhs, const array &rhs) |
| Adds two arrays or an array and a value. More...
|
|
AFAPI array | operator+ (const bool &lhs, const array &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const int &lhs, const array &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const unsigned &lhs, const array &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const char &lhs, const array &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const unsigned char &lhs, const array &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const long &lhs, const array &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const unsigned long &lhs, const array &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const long long &lhs, const array &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const unsigned long long &lhs, const array &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const double &lhs, const array &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const float &lhs, const array &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const cfloat &lhs, const array &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const cdouble &lhs, const array &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const array &lhs, const bool &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const array &lhs, const int &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const array &lhs, const unsigned &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const array &lhs, const char &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const array &lhs, const unsigned char &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const array &lhs, const long &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const array &lhs, const unsigned long &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const array &lhs, const long long &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const array &lhs, const unsigned long long &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const array &lhs, const double &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const array &lhs, const float &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const array &lhs, const cfloat &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const array &lhs, const cdouble &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const short &lhs, const array &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const unsigned short &lhs, const array &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const array &lhs, const short &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator+ (const array &lhs, const unsigned short &rhs) |
| Adds two arrays or an array and a value. (const array&, const array&) More...
|
|
|
AFAPI array | operator- (const array &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value. More...
|
|
AFAPI array | operator- (const bool &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const int &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const unsigned &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const char &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const unsigned char &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const long &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const unsigned long &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const long long &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const unsigned long long &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const double &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const float &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const cfloat &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const cdouble &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const array &lhs, const bool &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const array &lhs, const int &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const array &lhs, const unsigned &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const array &lhs, const char &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const array &lhs, const unsigned char &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const array &lhs, const long &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const array &lhs, const unsigned long &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const array &lhs, const long long &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const array &lhs, const unsigned long long &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const array &lhs, const double &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const array &lhs, const float &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const array &lhs, const cfloat &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const array &lhs, const cdouble &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const short &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const unsigned short &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const array &lhs, const short &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator- (const array &lhs, const unsigned short &rhs) |
| Subtracts two arrays or an array and a value. (const array&, const array&) More...
|
|
|
AFAPI array | operator* (const array &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value. More...
|
|
AFAPI array | operator* (const bool &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const int &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const unsigned &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const char &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const unsigned char &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const long &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const unsigned long &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const long long &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const unsigned long long &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const double &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const float &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const cfloat &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const cdouble &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const array &lhs, const bool &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const array &lhs, const int &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const array &lhs, const unsigned &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const array &lhs, const char &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const array &lhs, const unsigned char &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const array &lhs, const long &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const array &lhs, const unsigned long &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const array &lhs, const long long &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const array &lhs, const unsigned long long &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const array &lhs, const double &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const array &lhs, const float &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const array &lhs, const cfloat &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const array &lhs, const cdouble &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const short &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const unsigned short &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const array &lhs, const short &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator* (const array &lhs, const unsigned short &rhs) |
| Multiplies two arrays or an array and a value. (const array&, const array&) More...
|
|
|
AFAPI array | operator/ (const array &lhs, const array &rhs) |
| Divides two arrays or an array and a value. More...
|
|
AFAPI array | operator/ (const bool &lhs, const array &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const int &lhs, const array &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const unsigned &lhs, const array &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const char &lhs, const array &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const unsigned char &lhs, const array &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const long &lhs, const array &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const unsigned long &lhs, const array &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const long long &lhs, const array &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const unsigned long long &lhs, const array &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const double &lhs, const array &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const float &lhs, const array &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const cfloat &lhs, const array &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const cdouble &lhs, const array &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const array &lhs, const bool &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const array &lhs, const int &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const array &lhs, const unsigned &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const array &lhs, const char &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const array &lhs, const unsigned char &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const array &lhs, const long &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const array &lhs, const unsigned long &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const array &lhs, const long long &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const array &lhs, const unsigned long long &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const array &lhs, const double &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const array &lhs, const float &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const array &lhs, const cfloat &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const array &lhs, const cdouble &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const short &lhs, const array &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const unsigned short &lhs, const array &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const array &lhs, const short &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator/ (const array &lhs, const unsigned short &rhs) |
| Divides two arrays or an array and a value. (const array&, const array&) More...
|
|
|
AFAPI array | operator== (const array &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value. More...
|
|
AFAPI array | operator== (const bool &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const int &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const unsigned &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const char &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const unsigned char &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const long &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const unsigned long &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const long long &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const unsigned long long &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const double &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const float &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const cfloat &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const cdouble &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const array &lhs, const bool &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const array &lhs, const int &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const array &lhs, const unsigned &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const array &lhs, const char &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const array &lhs, const unsigned char &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const array &lhs, const long &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const array &lhs, const unsigned long &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const array &lhs, const long long &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const array &lhs, const unsigned long long &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const array &lhs, const double &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const array &lhs, const float &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const array &lhs, const cfloat &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const array &lhs, const cdouble &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const short &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const unsigned short &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const array &lhs, const short &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator== (const array &lhs, const unsigned short &rhs) |
| Performs an equality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
|
AFAPI array | operator!= (const array &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value. More...
|
|
AFAPI array | operator!= (const bool &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const int &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const unsigned &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const char &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const unsigned char &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const long &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const unsigned long &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const long long &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const unsigned long long &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const double &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const float &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const cfloat &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const cdouble &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const array &lhs, const bool &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const array &lhs, const int &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const array &lhs, const unsigned &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const array &lhs, const char &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const array &lhs, const unsigned char &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const array &lhs, const long &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const array &lhs, const unsigned long &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const array &lhs, const long long &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const array &lhs, const unsigned long long &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const array &lhs, const double &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const array &lhs, const float &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const array &lhs, const cfloat &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const array &lhs, const cdouble &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const short &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const unsigned short &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const array &lhs, const short &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator!= (const array &lhs, const unsigned short &rhs) |
| Performs an inequality operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
|
AFAPI array | operator< (const array &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value. More...
|
|
AFAPI array | operator< (const bool &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const int &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const unsigned &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const char &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const unsigned char &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const long &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const unsigned long &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const long long &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const unsigned long long &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const double &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const float &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const cfloat &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const cdouble &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const array &lhs, const bool &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const array &lhs, const int &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const array &lhs, const unsigned &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const array &lhs, const char &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const array &lhs, const unsigned char &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const array &lhs, const long &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const array &lhs, const unsigned long &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const array &lhs, const long long &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const array &lhs, const unsigned long long &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const array &lhs, const double &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const array &lhs, const float &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const array &lhs, const cfloat &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const array &lhs, const cdouble &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const short &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const unsigned short &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const array &lhs, const short &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator< (const array &lhs, const unsigned short &rhs) |
| Performs a lower than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
|
AFAPI array | operator<= (const array &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. More...
|
|
AFAPI array | operator<= (const bool &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const int &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const unsigned &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const char &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const unsigned char &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const long &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const unsigned long &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const long long &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const unsigned long long &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const double &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const float &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const cfloat &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const cdouble &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const array &lhs, const bool &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const array &lhs, const int &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const array &lhs, const unsigned &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const array &lhs, const char &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const array &lhs, const unsigned char &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const array &lhs, const long &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const array &lhs, const unsigned long &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const array &lhs, const long long &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const array &lhs, const unsigned long long &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const array &lhs, const double &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const array &lhs, const float &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const array &lhs, const cfloat &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const array &lhs, const cdouble &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const short &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const unsigned short &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const array &lhs, const short &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<= (const array &lhs, const unsigned short &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
|
AFAPI array | operator> (const array &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value. More...
|
|
AFAPI array | operator> (const bool &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const int &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const unsigned &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const char &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const unsigned char &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const long &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const unsigned long &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const long long &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const unsigned long long &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const double &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const float &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const cfloat &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const cdouble &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const array &lhs, const bool &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const array &lhs, const int &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const array &lhs, const unsigned &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const array &lhs, const char &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const array &lhs, const unsigned char &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const array &lhs, const long &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const array &lhs, const unsigned long &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const array &lhs, const long long &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const array &lhs, const unsigned long long &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const array &lhs, const double &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const array &lhs, const float &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const array &lhs, const cfloat &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const array &lhs, const cdouble &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const short &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const unsigned short &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const array &lhs, const short &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator> (const array &lhs, const unsigned short &rhs) |
| Performs an greater than operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
|
AFAPI array | operator>= (const array &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. More...
|
|
AFAPI array | operator>= (const bool &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const int &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const unsigned &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const char &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const unsigned char &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const long &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const unsigned long &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const long long &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const unsigned long long &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const double &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const float &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const cfloat &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const cdouble &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const array &lhs, const bool &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const array &lhs, const int &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const array &lhs, const unsigned &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const array &lhs, const char &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const array &lhs, const unsigned char &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const array &lhs, const long &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const array &lhs, const unsigned long &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const array &lhs, const long long &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const array &lhs, const unsigned long long &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const array &lhs, const double &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const array &lhs, const float &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const array &lhs, const cfloat &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const array &lhs, const cdouble &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const short &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const unsigned short &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const array &lhs, const short &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>= (const array &lhs, const unsigned short &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
|
AFAPI array | operator&& (const array &lhs, const array &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. More...
|
|
AFAPI array | operator&& (const bool &lhs, const array &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const int &lhs, const array &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const unsigned &lhs, const array &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const char &lhs, const array &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const unsigned char &lhs, const array &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const long &lhs, const array &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const unsigned long &lhs, const array &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const long long &lhs, const array &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const unsigned long long &lhs, const array &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const double &lhs, const array &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const float &lhs, const array &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const cfloat &lhs, const array &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const cdouble &lhs, const array &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const array &lhs, const bool &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const array &lhs, const int &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const array &lhs, const unsigned &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const array &lhs, const char &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const array &lhs, const unsigned char &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const array &lhs, const long &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const array &lhs, const unsigned long &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const array &lhs, const long long &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const array &lhs, const unsigned long long &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const array &lhs, const double &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const array &lhs, const float &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const array &lhs, const cfloat &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const array &lhs, const cdouble &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const short &lhs, const array &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const unsigned short &lhs, const array &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const array &lhs, const short &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator&& (const array &lhs, const unsigned short &rhs) |
| Performs a logical AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
|
AFAPI array | operator|| (const array &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. More...
|
|
AFAPI array | operator|| (const bool &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const int &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const unsigned &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const char &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const unsigned char &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const long &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const unsigned long &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const long long &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const unsigned long long &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const double &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const float &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const cfloat &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const cdouble &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const array &lhs, const bool &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const array &lhs, const int &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const array &lhs, const unsigned &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const array &lhs, const char &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const array &lhs, const unsigned char &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const array &lhs, const long &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const array &lhs, const unsigned long &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const array &lhs, const long long &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const array &lhs, const unsigned long long &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const array &lhs, const double &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const array &lhs, const float &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const array &lhs, const cfloat &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const array &lhs, const cdouble &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const short &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const unsigned short &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const array &lhs, const short &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator|| (const array &lhs, const unsigned short &rhs) |
| Performs an logical OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
|
AFAPI array | operator% (const array &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value. More...
|
|
AFAPI array | operator% (const bool &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const int &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const unsigned &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const char &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const unsigned char &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const long &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const unsigned long &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const long long &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const unsigned long long &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const double &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const float &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const cfloat &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const cdouble &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const array &lhs, const bool &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const array &lhs, const int &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const array &lhs, const unsigned &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const array &lhs, const char &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const array &lhs, const unsigned char &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const array &lhs, const long &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const array &lhs, const unsigned long &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const array &lhs, const long long &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const array &lhs, const unsigned long long &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const array &lhs, const double &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const array &lhs, const float &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const array &lhs, const cfloat &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const array &lhs, const cdouble &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const short &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const unsigned short &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const array &lhs, const short &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator% (const array &lhs, const unsigned short &rhs) |
| Performs an modulo operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
|
AFAPI array | operator& (const array &lhs, const array &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. More...
|
|
AFAPI array | operator& (const bool &lhs, const array &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const int &lhs, const array &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const unsigned &lhs, const array &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const char &lhs, const array &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const unsigned char &lhs, const array &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const long &lhs, const array &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const unsigned long &lhs, const array &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const long long &lhs, const array &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const unsigned long long &lhs, const array &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const double &lhs, const array &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const float &lhs, const array &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const cfloat &lhs, const array &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const cdouble &lhs, const array &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const array &lhs, const bool &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const array &lhs, const int &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const array &lhs, const unsigned &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const array &lhs, const char &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const array &lhs, const unsigned char &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const array &lhs, const long &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const array &lhs, const unsigned long &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const array &lhs, const long long &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const array &lhs, const unsigned long long &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const array &lhs, const double &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const array &lhs, const float &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const array &lhs, const cfloat &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const array &lhs, const cdouble &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const short &lhs, const array &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const unsigned short &lhs, const array &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const array &lhs, const short &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator& (const array &lhs, const unsigned short &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
|
AFAPI array | operator| (const array &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. More...
|
|
AFAPI array | operator| (const bool &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const int &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const unsigned &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const char &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const unsigned char &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const long &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const unsigned long &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const long long &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const unsigned long long &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const double &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const float &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const cfloat &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const cdouble &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const array &lhs, const bool &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const array &lhs, const int &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const array &lhs, const unsigned &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const array &lhs, const char &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const array &lhs, const unsigned char &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const array &lhs, const long &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const array &lhs, const unsigned long &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const array &lhs, const long long &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const array &lhs, const unsigned long long &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const array &lhs, const double &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const array &lhs, const float &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const array &lhs, const cfloat &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const array &lhs, const cdouble &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const short &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const unsigned short &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const array &lhs, const short &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator| (const array &lhs, const unsigned short &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
|
AFAPI array | operator^ (const array &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. More...
|
|
AFAPI array | operator^ (const bool &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const int &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const unsigned &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const char &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const unsigned char &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const long &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const unsigned long &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const long long &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const unsigned long long &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const double &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const float &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const cfloat &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const cdouble &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const array &lhs, const bool &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const array &lhs, const int &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const array &lhs, const unsigned &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const array &lhs, const char &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const array &lhs, const unsigned char &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const array &lhs, const long &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const array &lhs, const unsigned long &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const array &lhs, const long long &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const array &lhs, const unsigned long long &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const array &lhs, const double &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const array &lhs, const float &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const array &lhs, const cfloat &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const array &lhs, const cdouble &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const short &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const unsigned short &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const array &lhs, const short &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator^ (const array &lhs, const unsigned short &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
|
AFAPI array | operator<< (const array &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value. More...
|
|
AFAPI array | operator<< (const bool &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const int &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const unsigned &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const char &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const unsigned char &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const long &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const unsigned long &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const long long &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const unsigned long long &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const double &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const float &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const cfloat &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const cdouble &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const array &lhs, const bool &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const array &lhs, const int &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const array &lhs, const unsigned &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const array &lhs, const char &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const array &lhs, const unsigned char &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const array &lhs, const long &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const array &lhs, const unsigned long &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const array &lhs, const long long &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const array &lhs, const unsigned long long &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const array &lhs, const double &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const array &lhs, const float &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const array &lhs, const cfloat &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const array &lhs, const cdouble &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const short &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const unsigned short &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const array &lhs, const short &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator<< (const array &lhs, const unsigned short &rhs) |
| Performs an left shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
|
AFAPI array | operator>> (const array &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value. More...
|
|
AFAPI array | operator>> (const bool &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const int &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const unsigned &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const char &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const unsigned char &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const long &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const unsigned long &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const long long &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const unsigned long long &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const double &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const float &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const cfloat &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const cdouble &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const array &lhs, const bool &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const array &lhs, const int &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const array &lhs, const unsigned &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const array &lhs, const char &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const array &lhs, const unsigned char &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const array &lhs, const long &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const array &lhs, const unsigned long &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const array &lhs, const long long &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const array &lhs, const unsigned long long &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const array &lhs, const double &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const array &lhs, const float &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const array &lhs, const cfloat &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const array &lhs, const cdouble &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const short &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const unsigned short &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const array &lhs, const short &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
AFAPI array | operator>> (const array &lhs, const unsigned short &rhs) |
| Performs an right shift operation on two arrays or an array and a value. (const array&, const array&) More...
|
|
|
array & | eval (array &a) |
| Evaluate an expression (nonblocking). More...
|
|
void | eval (array &a, array &b) |
|
void | eval (array &a, array &b, array &c) |
|
void | eval (array &a, array &b, array &c, array &d) |
|
void | eval (array &a, array &b, array &c, array &d, array &e) |
|
void | eval (array &a, array &b, array &c, array &d, array &e, array &f) |
|
|
AFAPI void * | alloc (const size_t elements, const dtype type) |
| Allocates memory using ArrayFire's memory manager. More...
|
|
template<typename T > |
T * | alloc (const size_t elements) |
| Allocates memory using ArrayFire's memory manager. More...
|
|
|
AFAPI void * | pinned (const size_t elements, const dtype type) |
| Allocate pinned memory using ArrayFire's memory manager. More...
|
|
template<typename T > |
T * | pinned (const size_t elements) |
| Allocate pinned memory using ArrayFire's memory manager. More...
|
|
|
AFAPI void | deviceMemInfo (size_t *alloc_bytes, size_t *alloc_buffers, size_t *lock_bytes, size_t *lock_buffers) |
| Gets information about the memory manager. More...
|
|
AFAPI void | printMemInfo (const char *msg=NULL, const int device_id=-1) |
| Prints buffer details from the ArrayFire Device Manager. More...
|
|
AFAPI void | deviceGC () |
| Call the garbage collection function in the memory manager. More...
|
|