int flgr1d_compare | ( | FLGR_Data1D * | dat1, | |
char * | test, | |||
FLGR_Data1D * | dat2 | |||
) |
Compare element by element two FLGR_Data1D
ex: dat1==dat2, dat1>dat2...
dat1 | : pointer to FLGR_Data1D structure | |
test | : String for test ">" "<" ">=" "<=" "==" "!=" | |
dat2 | : pointer to FLGR_Data1D structure |
Definition at line 248 of file flgrCoreCompare.c.
int flgr1d_compare_const_ptr | ( | FLGR_Data1D * | dat1, | |
char * | test, | |||
FLGR_Vector * | constant | |||
) |
Compare element by element a FLGR_Data1D and a constant
dat1 | : pointer to FLGR_Data1D structure | |
test | : String for test ">" "<" ">=" "<=" "==" "!=" | |
constant | : pointer to a value (type must correspond to dat1->type) |
Definition at line 417 of file flgrCoreCompare.c.
int flgr1d_compare_const_str | ( | FLGR_Data1D * | dat1, | |
char * | test, | |||
char * | constant | |||
) |
Compare element by element a FLGR_Data1D and a constant
dat1 | : pointer to FLGR_Data1D structure | |
test | : String for test ">" "<" ">=" "<=" "==" "!=" | |
constant | : pointer to a string |
Definition at line 454 of file flgrCoreCompare.c.
FLGR_Ret flgr1d_replace_I_with_C_C_C | ( | FLGR_Data1D * | datout, | |
FLGR_Data1D * | dattest1, | |||
char * | test, | |||
FLGR_Vector * | vec_test2, | |||
FLGR_Vector * | vec_true, | |||
FLGR_Vector * | vec_false | |||
) |
compute FLGR_Data1D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=datfalse[i];
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
vec_test2 | : test operand 2 | |
vec_true | ||
vec_false |
Definition at line 2211 of file flgrCoreReplace.c.
FLGR_Ret flgr1d_replace_I_with_C_C_I | ( | FLGR_Data1D * | datout, | |
FLGR_Data1D * | dattest1, | |||
char * | test, | |||
FLGR_Vector * | vec_test2, | |||
FLGR_Vector * | vec_true, | |||
FLGR_Data1D * | datfalse | |||
) |
compute FLGR_Data1D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=datfalse[i];
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
vec_test2 | : test operand 2 | |
vec_true | ||
datfalse |
Definition at line 2014 of file flgrCoreReplace.c.
FLGR_Ret flgr1d_replace_I_with_C_I_C | ( | FLGR_Data1D * | datout, | |
FLGR_Data1D * | dattest1, | |||
char * | test, | |||
FLGR_Vector * | vec_test2, | |||
FLGR_Data1D * | dattrue, | |||
FLGR_Vector * | vec_false | |||
) |
compute FLGR_Data1D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=vfalse;
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
vec_test2 | : test operand 2 | |
dattrue | ||
vec_false |
Definition at line 1819 of file flgrCoreReplace.c.
FLGR_Ret flgr1d_replace_I_with_C_I_I | ( | FLGR_Data1D * | datout, | |
FLGR_Data1D * | dattest1, | |||
char * | test, | |||
FLGR_Vector * | vec_test2, | |||
FLGR_Data1D * | dattrue, | |||
FLGR_Data1D * | datfalse | |||
) |
compute FLGR_Data1D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=datfalse[i];
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
vec_test2 | : test operand 2 | |
dattrue | ||
datfalse |
Definition at line 1629 of file flgrCoreReplace.c.
FLGR_Ret flgr1d_replace_I_with_I_C_C | ( | FLGR_Data1D * | datout, | |
FLGR_Data1D * | dattest1, | |||
char * | test, | |||
FLGR_Data1D * | dattest2, | |||
FLGR_Vector * | vec_true, | |||
FLGR_Vector * | vec_false | |||
) |
compute FLGR_Data1D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=datfalse[i];
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
dattest2 | : test operand 2 | |
vec_true | ||
vec_false |
Definition at line 1425 of file flgrCoreReplace.c.
FLGR_Ret flgr1d_replace_I_with_I_C_I | ( | FLGR_Data1D * | datout, | |
FLGR_Data1D * | dattest1, | |||
char * | test, | |||
FLGR_Data1D * | dattest2, | |||
FLGR_Vector * | vec_true, | |||
FLGR_Data1D * | datfalse | |||
) |
compute FLGR_Data1D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=datfalse[i];
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
dattest2 | : test operand 2 | |
vec_true | ||
datfalse |
Definition at line 1235 of file flgrCoreReplace.c.
FLGR_Ret flgr1d_replace_I_with_I_I_C | ( | FLGR_Data1D * | datout, | |
FLGR_Data1D * | dattest1, | |||
char * | test, | |||
FLGR_Data1D * | dattest2, | |||
FLGR_Data1D * | dattrue, | |||
FLGR_Vector * | vec_false | |||
) |
compute FLGR_Data1D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=vfalse;
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
dattest2 | : test operand 2 | |
dattrue | ||
vec_false |
Definition at line 1042 of file flgrCoreReplace.c.
FLGR_Ret flgr1d_replace_I_with_I_I_I | ( | FLGR_Data1D * | datout, | |
FLGR_Data1D * | dattest1, | |||
char * | test, | |||
FLGR_Data1D * | dattest2, | |||
FLGR_Data1D * | dattrue, | |||
FLGR_Data1D * | datfalse | |||
) |
compute FLGR_Data1D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=datfalse[i];
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
dattest2 | : test operand 2 | |
dattrue | ||
datfalse |
Definition at line 894 of file flgrCoreReplace.c.
FLGR_Ret flgr1d_replace_I_with_I_I_S | ( | FLGR_Data1D * | datout, | |
FLGR_Data1D * | dattest1, | |||
char * | test, | |||
FLGR_Data1D * | dattest2, | |||
FLGR_Data1D * | dattrue, | |||
char * | str_false | |||
) |
compute FLGR_Data1D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=vfalse;
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
dattest2 | : test operand 2 | |
dattrue | ||
str_false |
Definition at line 1091 of file flgrCoreReplace.c.
FLGR_Ret flgr1d_replace_I_with_I_S_I | ( | FLGR_Data1D * | datout, | |
FLGR_Data1D * | dattest1, | |||
char * | test, | |||
FLGR_Data1D * | dattest2, | |||
char * | str_true, | |||
FLGR_Data1D * | datfalse | |||
) |
compute FLGR_Data1D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=datfalse[i];
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
dattest2 | : test operand 2 | |
str_true | ||
datfalse |
Definition at line 1282 of file flgrCoreReplace.c.
FLGR_Ret flgr1d_replace_I_with_I_S_S | ( | FLGR_Data1D * | datout, | |
FLGR_Data1D * | dattest1, | |||
char * | test, | |||
FLGR_Data1D * | dattest2, | |||
char * | str_true, | |||
char * | str_false | |||
) |
compute FLGR_Data1D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=datfalse[i];
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
dattest2 | : test operand 2 | |
str_true | ||
str_false |
Definition at line 1471 of file flgrCoreReplace.c.
FLGR_Ret flgr1d_replace_I_with_S_I_I | ( | FLGR_Data1D * | datout, | |
FLGR_Data1D * | dattest1, | |||
char * | test, | |||
char * | str_test2, | |||
FLGR_Data1D * | dattrue, | |||
FLGR_Data1D * | datfalse | |||
) |
compute FLGR_Data1D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=datfalse[i];
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
str_test2 | : string for vector test operand 2 | |
dattrue | ||
datfalse |
Definition at line 1677 of file flgrCoreReplace.c.
FLGR_Ret flgr1d_replace_I_with_S_I_S | ( | FLGR_Data1D * | datout, | |
FLGR_Data1D * | dattest1, | |||
char * | test, | |||
char * | str_test2, | |||
FLGR_Data1D * | dattrue, | |||
char * | str_false | |||
) |
compute FLGR_Data1D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=vfalse;
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
str_test2 | : string for vector test operand 2 | |
dattrue | ||
str_false |
Definition at line 1865 of file flgrCoreReplace.c.
FLGR_Ret flgr1d_replace_I_with_S_S_I | ( | FLGR_Data1D * | datout, | |
FLGR_Data1D * | dattest1, | |||
char * | test, | |||
char * | str_test2, | |||
char * | str_true, | |||
FLGR_Data1D * | datfalse | |||
) |
compute FLGR_Data1D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=vfalse;
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
str_test2 | : string for vector test operand 2 | |
str_true | ||
datfalse |
Definition at line 2060 of file flgrCoreReplace.c.
FLGR_Ret flgr1d_replace_I_with_S_S_S | ( | FLGR_Data1D * | datout, | |
FLGR_Data1D * | dattest1, | |||
char * | test, | |||
char * | str_test2, | |||
char * | str_true, | |||
char * | str_false | |||
) |
compute FLGR_Data1D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=vfalse;
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
str_test2 | : string for vector test operand 2 | |
str_true | ||
str_false |
Definition at line 2255 of file flgrCoreReplace.c.
int flgr2d_compare | ( | FLGR_Data2D * | dat1, | |
char * | test, | |||
FLGR_Data2D * | dat2 | |||
) |
Compare two images pixels by pixels.
dat1 | : pointer to FLGR_Data2D structure | |
test | : String for test ">" "<" ">=" "<=" "==" "!=" | |
dat2 | : pointer to FLGR_Data2D structure |
Definition at line 556 of file flgrCoreCompare.c.
int flgr2d_compare_const_ptr | ( | FLGR_Data2D * | dat1, | |
char * | test, | |||
FLGR_Vector * | constant | |||
) |
Compare all pixels of an images with a constant.
dat1 | : pointer to FLGR_Data2D structure | |
test | : String for test ">" "<" ">=" "<=" "==" "!=" | |
constant | : void pointer to constant variable (type must correspond to image type) |
Definition at line 674 of file flgrCoreCompare.c.
int flgr2d_compare_const_str | ( | FLGR_Data2D * | dat1, | |
char * | test, | |||
char * | constant | |||
) |
Compare FLGR_Data2D elements with a constant.
dat1 | : pointer to FLGR_Data2D structure | |
test | : String for test ">" "<" ">=" "<=" "==" "!=" | |
constant | : void pointer to constant variable (type must correspond to image type) |
Definition at line 709 of file flgrCoreCompare.c.
FLGR_Ret flgr2d_replace_I_with_C_C_C | ( | FLGR_Data2D * | datout, | |
FLGR_Data2D * | dattest1, | |||
char * | test, | |||
FLGR_Vector * | vec_test2, | |||
FLGR_Vector * | vec_true, | |||
FLGR_Vector * | vec_false | |||
) |
compute pixel to pixel replace2d
if( dattest1[i][j]==*vtest2 ) datout[i][j]=dattrue[i][j]; else datout[i][j]=*vfalse;
datout | : image output | |
dattest1 | : image test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
vec_test2 | : constant pointer test operand 2 | |
vec_true | : constant pinter value if true | |
vec_false | : constant pointer if false |
Definition at line 3284 of file flgrCoreReplace.c.
FLGR_Ret flgr2d_replace_I_with_C_C_I | ( | FLGR_Data2D * | datout, | |
FLGR_Data2D * | dattest1, | |||
char * | test, | |||
FLGR_Vector * | vec_test2, | |||
FLGR_Vector * | vec_true, | |||
FLGR_Data2D * | datfalse | |||
) |
compute pixel to pixel replace2d
if( dattest1[i][j]==*vtest2 ) datout[i][j]=*vtrue; else datout[i][j]=datfalse[i][j];
datout | : image output | |
dattest1 | : image test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
vec_test2 | : constant pointer for test operand 2 | |
vec_true | : constant pointer if true | |
datfalse | : image value if false |
Definition at line 3236 of file flgrCoreReplace.c.
FLGR_Ret flgr2d_replace_I_with_C_I_C | ( | FLGR_Data2D * | datout, | |
FLGR_Data2D * | dattest1, | |||
char * | test, | |||
FLGR_Vector * | vec_test2, | |||
FLGR_Data2D * | dattrue, | |||
FLGR_Vector * | vec_false | |||
) |
compute pixel to pixel replace2d
if( dattest1[i][j]==*vtest2 ) datout[i][j]=dattrue[i][j]; else datout[i][j]=*vfalse;
datout | : image output | |
dattest1 | : image test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
vec_test2 | : constant pointer test operand 2 | |
dattrue | : image value if true | |
vec_false | : constant pointer if false |
Definition at line 3187 of file flgrCoreReplace.c.
FLGR_Ret flgr2d_replace_I_with_C_I_I | ( | FLGR_Data2D * | datout, | |
FLGR_Data2D * | dattest1, | |||
char * | test, | |||
FLGR_Vector * | vec_test2, | |||
FLGR_Data2D * | dattrue, | |||
FLGR_Data2D * | datfalse | |||
) |
compute pixel to pixel replace2d
if( dattest1[i][j]==*vtest2 ) datout[i][j]=dattrue[i][j]; else datout[i][j]=datfalse[i][j];
datout | : image output | |
dattest1 | : image test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
vec_test2 | : constant pointer for test operand 2 | |
dattrue | : image value if true | |
datfalse | : image value if false |
Definition at line 3137 of file flgrCoreReplace.c.
FLGR_Ret flgr2d_replace_I_with_I_C_C | ( | FLGR_Data2D * | datout, | |
FLGR_Data2D * | dattest1, | |||
char * | test, | |||
FLGR_Data2D * | dattest2, | |||
FLGR_Vector * | vec_true, | |||
FLGR_Vector * | vec_false | |||
) |
compute pixel to pixel replace2d
if( dattest1[i][j]==dattest2[i][j] ) datout[i][j]=*vtrue; else datout[i][j]=*vfalse;
datout | : image output | |
dattest1 | : image test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
dattest2 | : image test operand 2 | |
vec_true | : constant pointer if true | |
vec_false | : constant pointer if false |
Definition at line 3090 of file flgrCoreReplace.c.
FLGR_Ret flgr2d_replace_I_with_I_C_I | ( | FLGR_Data2D * | datout, | |
FLGR_Data2D * | dattest1, | |||
char * | test, | |||
FLGR_Data2D * | dattest2, | |||
FLGR_Vector * | vec_true, | |||
FLGR_Data2D * | datfalse | |||
) |
compute pixel to pixel replace2d
if( dattest1[i][j]==dattest2[i][j] ) datout[i][j]=*vtrue; else datout[i][j]=datfalse[i][j];
datout | : image output | |
dattest1 | : image test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
dattest2 | : image test operand 2 | |
vec_true | : constant pointer if true | |
datfalse | : image value if false |
Definition at line 3039 of file flgrCoreReplace.c.
FLGR_Ret flgr2d_replace_I_with_I_I_C | ( | FLGR_Data2D * | datout, | |
FLGR_Data2D * | dattest1, | |||
char * | test, | |||
FLGR_Data2D * | dattest2, | |||
FLGR_Data2D * | dattrue, | |||
FLGR_Vector * | vec_false | |||
) |
compute pixel to pixel replace2d
if( dattest1[i][j]==dattest2[i][j] ) datout[i][j]=dattrue[i][j]; else datout[i][j]=*vfalse;
datout | : image output | |
dattest1 | : image test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
dattest2 | : image test operand 2 | |
dattrue | : image value if true | |
vec_false | : constant pointer if false |
Definition at line 2989 of file flgrCoreReplace.c.
FLGR_Ret flgr2d_replace_I_with_I_I_I | ( | FLGR_Data2D * | datout, | |
FLGR_Data2D * | dattest1, | |||
char * | test, | |||
FLGR_Data2D * | dattest2, | |||
FLGR_Data2D * | dattrue, | |||
FLGR_Data2D * | datfalse | |||
) |
compute pixel to pixel replace2d
if( dattest1[i][j]==dattest2[i][j] ) datout[i][j]=dattrue[i][j]; else datout[i][j]=datfalse[i][j];
datout | : image output | |
dattest1 | : image test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
dattest2 | : image test operand 2 | |
dattrue | : image value if true | |
datfalse | : image value if false |
Definition at line 2934 of file flgrCoreReplace.c.
FLGR_Ret flgr2d_replace_I_with_I_I_S | ( | FLGR_Data2D * | datout, | |
FLGR_Data2D * | dattest1, | |||
char * | test, | |||
FLGR_Data2D * | dattest2, | |||
FLGR_Data2D * | dattrue, | |||
char * | str_false | |||
) |
compute FLGR_Data2D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=vfalse;
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
dattest2 | : test operand 2 | |
dattrue | ||
str_false |
Definition at line 3336 of file flgrCoreReplace.c.
FLGR_Ret flgr2d_replace_I_with_I_S_I | ( | FLGR_Data2D * | datout, | |
FLGR_Data2D * | dattest1, | |||
char * | test, | |||
FLGR_Data2D * | dattest2, | |||
char * | str_true, | |||
FLGR_Data2D * | datfalse | |||
) |
compute FLGR_Data2D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=datfalse[i];
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
dattest2 | : test operand 2 | |
str_true | ||
datfalse |
Definition at line 3384 of file flgrCoreReplace.c.
FLGR_Ret flgr2d_replace_I_with_I_S_S | ( | FLGR_Data2D * | datout, | |
FLGR_Data2D * | dattest1, | |||
char * | test, | |||
FLGR_Data2D * | dattest2, | |||
char * | str_true, | |||
char * | str_false | |||
) |
compute FLGR_Data2D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=datfalse[i];
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
dattest2 | : test operand 2 | |
str_true | ||
str_false |
Definition at line 3432 of file flgrCoreReplace.c.
FLGR_Ret flgr2d_replace_I_with_S_I_I | ( | FLGR_Data2D * | datout, | |
FLGR_Data2D * | dattest1, | |||
char * | test, | |||
char * | str_test2, | |||
FLGR_Data2D * | dattrue, | |||
FLGR_Data2D * | datfalse | |||
) |
compute FLGR_Data2D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=datfalse[i];
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
str_test2 | : string for vector test operand 2 | |
dattrue | ||
datfalse |
Definition at line 3488 of file flgrCoreReplace.c.
FLGR_Ret flgr2d_replace_I_with_S_I_S | ( | FLGR_Data2D * | datout, | |
FLGR_Data2D * | dattest1, | |||
char * | test, | |||
char * | str_test2, | |||
FLGR_Data2D * | dattrue, | |||
char * | str_false | |||
) |
compute FLGR_Data2D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=vfalse;
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
str_test2 | : string for vector test operand 2 | |
dattrue | ||
str_false |
Definition at line 3536 of file flgrCoreReplace.c.
FLGR_Ret flgr2d_replace_I_with_S_S_I | ( | FLGR_Data2D * | datout, | |
FLGR_Data2D * | dattest1, | |||
char * | test, | |||
char * | str_test2, | |||
char * | str_true, | |||
FLGR_Data2D * | datfalse | |||
) |
compute FLGR_Data2D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=vfalse;
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
str_test2 | : string for vector test operand 2 | |
str_true | ||
datfalse |
Definition at line 3592 of file flgrCoreReplace.c.
FLGR_Ret flgr2d_replace_I_with_S_S_S | ( | FLGR_Data2D * | datout, | |
FLGR_Data2D * | dattest1, | |||
char * | test, | |||
char * | str_test2, | |||
char * | str_true, | |||
char * | str_false | |||
) |
compute FLGR_Data2D elements replace
if( dattest1[i]==dattest2[i] ) datout[i]=dattrue[i]; else datout[i]=vfalse;
datout | ||
dattest1 | : test operand 1 | |
test | : string for test "<", "<=", "==", ">=", ">", "!=" | |
str_test2 | : string for vector test operand 2 | |
str_true | ||
str_false |
Definition at line 3651 of file flgrCoreReplace.c.