AjPChar ajChararrNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPChar | RETURN | Pointer to an empty character array structure |
From EMBOSS 2.0.0
AjPChar ajChararrNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size |
| AjPChar | RETURN | Pointer to an empty character array struct of specified size. |
From EMBOSS 6.2.0
void ajChararrDel (
AjPChar* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPChar* | thys | Delete | Pointer to the char array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 2.0.0
char ajChararrGet (
const AjPChar thys,
ajuint elem
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPChar | thys | Input | Pointer to the char array. |
| ajuint | elem | Input | array element. |
| char | RETURN | contents of array element |
From EMBOSS 2.0.0
AjBool ajChararrPut (
AjPChar* thys,
ajuint elem,
char v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPChar* | thys | Output | Pointer to the char array. |
| ajuint | elem | Input | array element. |
| char | v | Input | value to load. |
| AjBool | RETURN | true if the array was extended. |
From EMBOSS 2.0.0
char* ajChararrChararr (
const AjPChar thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPChar | thys | Input | Source array |
| char* | RETURN | Current array pointer, or a null string if undefined. |
From EMBOSS 2.0.0
ajuint ajChararrLen (
const AjPChar thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPChar | thys | Input | Source array |
| ajuint | RETURN | length |
From EMBOSS 6.2.0
AjPInt ajIntNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPInt | RETURN | Pointer to an empty integer array structure |
From EMBOSS 1.0.0
AjPInt ajIntNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size |
| AjPInt | RETURN | Pointer to an empty integer array struct of specified size. |
From EMBOSS 6.2.0
void ajIntDel (
AjPInt* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPInt* | thys | Delete | Pointer to the ajint array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 1.0.0
ajint ajIntGet (
const AjPInt thys,
ajuint elem
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPInt | thys | Input | Pointer to the ajint array. |
| ajuint | elem | Input | array element. |
| ajint | RETURN | contents of array element |
From EMBOSS 1.0.0
AjBool ajIntPut (
AjPInt* thys,
ajuint elem,
ajint v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPInt* | thys | Output | Pointer to the ajint array. |
| ajuint | elem | Input | array element. |
| ajint | v | Input | value to load. |
| AjBool | RETURN | true if the array was extended. |
From EMBOSS 1.0.0
void ajIntInc (
AjPInt* thys,
ajuint elem
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPInt* | thys | Output | Pointer to the ajint array. |
| ajuint | elem | Input | array element. |
| void | RETURN |
From EMBOSS 1.8.0
void ajIntDec (
AjPInt* thys,
ajuint elem
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPInt* | thys | Output | Pointer to the ajint array. |
| ajuint | elem | Input | array element. |
| void | RETURN |
From EMBOSS 1.8.0
AjPUint ajUintNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPUint | RETURN | Pointer to an empty unsigned integer array structure |
From EMBOSS 4.1.0
AjPUint ajUintNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size |
| AjPUint | RETURN | Pointer to an empty unsigned integer array struct of specified size. |
From EMBOSS 6.2.0
void ajUintDel (
AjPUint* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPUint* | thys | Delete | Pointer to the ajuint array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 4.1.0
ajuint ajUintGet (
const AjPUint thys,
ajuint elem
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPUint | thys | Input | Pointer to the ajuint array. |
| ajuint | elem | Input | array element. |
| ajuint | RETURN | contents of array element |
From EMBOSS 4.1.0
AjBool ajUintPut (
AjPUint* thys,
ajuint elem,
ajuint v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPUint* | thys | Output | Pointer to the ajuint array. |
| ajuint | elem | Input | array element. |
| ajuint | v | Input | value to load. |
| AjBool | RETURN | true if the array was extended. |
From EMBOSS 4.1.0
void ajUintInc (
AjPUint* thys,
ajuint elem
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPUint* | thys | Output | Pointer to the ajuint array. |
| ajuint | elem | Input | array element. |
| void | RETURN |
From EMBOSS 4.1.0
void ajUintDec (
AjPUint* thys,
ajuint elem
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPUint* | thys | Output | Pointer to the ajuint array. |
| ajuint | elem | Input | array element. |
| void | RETURN |
From EMBOSS 4.1.0
ajint* ajIntInt (
const AjPInt thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPInt | thys | Input | Source array |
| ajint* | RETURN | Current array pointer, or a null string if undefined. |
From EMBOSS 1.0.0
ajuint ajIntLen (
const AjPInt thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPInt | thys | Input | Source array |
| ajuint | RETURN | length |
From EMBOSS 1.0.0
ajuint* ajUintUint (
const AjPUint thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPUint | thys | Input | Source array |
| ajuint* | RETURN | Current array pointer, or a null string if undefined. |
From EMBOSS 4.1.0
ajuint ajUintLen (
const AjPUint thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPUint | thys | Input | Source array |
| ajuint | RETURN | length |
From EMBOSS 4.1.0
AjPFloat ajFloatNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPFloat | RETURN | Pointer to an empty float array structure |
From EMBOSS 1.0.0
AjPFloat ajFloatNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size |
| AjPFloat | RETURN | Pointer to an empty float array struct of specified size. |
From EMBOSS 6.2.0
void ajFloatDel (
AjPFloat* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPFloat* | thys | Delete | Pointer to the float array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 1.0.0
float ajFloatGet (
const AjPFloat thys,
ajuint elem
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPFloat | thys | Input | Pointer to the float array. |
| ajuint | elem | Input | array element. |
| float | RETURN | contents of array element |
From EMBOSS 1.0.0
AjBool ajFloatPut (
AjPFloat* thys,
ajuint elem,
float v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPFloat* | thys | Output | Pointer to the float array. |
| ajuint | elem | Input | array element. |
| float | v | Input | value to load. |
| AjBool | RETURN | true if the array was extended. |
From EMBOSS 1.0.0
float* ajFloatFloat (
const AjPFloat thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPFloat | thys | Input | Source array |
| float* | RETURN | Current array pointer, or a null string if undefined. |
From EMBOSS 1.0.0
ajuint ajFloatLen (
const AjPFloat thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPFloat | thys | Input | Source array |
| ajuint | RETURN | length |
From EMBOSS 1.0.0
AjPDouble ajDoubleNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPDouble | RETURN | Pointer to an empty double array structure |
From EMBOSS 1.0.0
AjPDouble ajDoubleNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size |
| AjPDouble | RETURN | Pointer to an empty double array struct of specified size. |
From EMBOSS 6.2.0
void ajDoubleDel (
AjPDouble* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPDouble* | thys | Delete | Pointer to the double array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 1.0.0
double ajDoubleGet (
const AjPDouble thys,
ajuint elem
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPDouble | thys | Input | Pointer to the double array. |
| ajuint | elem | Input | array element. |
| double | RETURN | contents of array element |
From EMBOSS 1.0.0
AjBool ajDoublePut (
AjPDouble* thys,
ajuint elem,
double v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPDouble* | thys | Output | Pointer to the double array. |
| ajuint | elem | Input | array element. |
| double | v | Input | value to load. |
| AjBool | RETURN | true if the array was extended. |
From EMBOSS 1.0.0
double* ajDoubleDouble (
const AjPDouble thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPDouble | thys | Input | Source array |
| double* | RETURN | Current array pointer, or a null string if undefined. |
From EMBOSS 1.0.0
ajuint ajDoubleLen (
const AjPDouble thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPDouble | thys | Input | Source array |
| ajuint | RETURN | length |
From EMBOSS 1.0.0
AjPShort ajShortNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPShort | RETURN | Pointer to an empty short array structure |
From EMBOSS 1.0.0
AjPShort ajShortNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size |
| AjPShort | RETURN | Pointer to an empty short array struct of specified size. |
From EMBOSS 6.2.0
void ajShortDel (
AjPShort* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPShort* | thys | Delete | Pointer to the short array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 1.0.0
short ajShortGet (
const AjPShort thys,
ajuint elem
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPShort | thys | Input | Pointer to the short array. |
| ajuint | elem | Input | array element. |
| short | RETURN | contents of array element |
From EMBOSS 1.0.0
AjBool ajShortPut (
AjPShort* thys,
ajuint elem,
short v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPShort* | thys | Output | Pointer to the short integer array. |
| ajuint | elem | Input | array element. |
| short | v | Input | value to load. |
| AjBool | RETURN | true if the array was extended. |
From EMBOSS 1.0.0
short* ajShortShort (
const AjPShort thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPShort | thys | Input | Source array |
| short* | RETURN | Current array pointer, or a null string if undefined. |
From EMBOSS 1.0.0
ajuint ajShortLen (
const AjPShort thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPShort | thys | Input | Source array |
| ajuint | RETURN | length |
From EMBOSS 1.0.0
AjPLong ajLongNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPLong | RETURN | Pointer to an empty ajlong array structure |
From EMBOSS 1.0.0
AjPLong ajLongNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size |
| AjPLong | RETURN | Pointer to an empty ajlong array struct of specified size. |
From EMBOSS 6.2.0
void ajLongDel (
AjPLong* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPLong* | thys | Delete | Pointer to the ajlong array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 1.0.0
ajlong ajLongGet (
const AjPLong thys,
ajuint elem
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPLong | thys | Input | Pointer to the ajlong array. |
| ajuint | elem | Input | array element. |
| ajlong | RETURN | contents of array element |
From EMBOSS 1.0.0
AjBool ajLongPut (
AjPLong* thys,
ajuint elem,
ajlong v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPLong* | thys | Output | Pointer to the long integer array. |
| ajuint | elem | Input | array element. |
| ajlong | v | Input | value to load. |
| AjBool | RETURN | true if the array was extended. |
From EMBOSS 1.0.0
ajlong* ajLongLong (
const AjPLong thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPLong | thys | Input | Source array |
| ajlong* | RETURN | Current array pointer, or a null string if undefined. |
From EMBOSS 1.0.0
ajuint ajLongLen (
const AjPLong thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPLong | thys | Input | Source array |
| ajuint | RETURN | length |
From EMBOSS 1.0.0
AjBool ajFloatParse (
const AjPStr str,
AjPFloat* array
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPStr | str | Input | Input string |
| AjPFloat* | array | Output | Array |
| AjBool | RETURN | ajTrue on success. |
From EMBOSS 1.0.0
void ajFloatStr (
const AjPFloat array,
ajint precision,
AjPStr* str
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPFloat | array | Input | Array |
| ajint | precision | Input | floating point precision |
| AjPStr* | str | Output | Output string |
| void | RETURN |
From EMBOSS 1.0.0
void ajFloatTrace (
const AjPFloat array,
ajint precision,
const char* text
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPFloat | array | Input | Array |
| ajint | precision | Input | floating point precision |
| const char* | text | Input | Report title |
| void | RETURN |
From EMBOSS 1.0.0
ajuint ajArrCommaList (
const AjPStr s,
AjPStr** a
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPStr | s | Input | Line containing comma separated strings |
| AjPStr** | a | Output | array pointer to create and load |
| ajuint | RETURN | number of array elements created |
From EMBOSS 1.0.0
double* ajArrDoubleLine (
const AjPStr line,
const char* delim,
ajuint startcol,
ajuint endcol
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPStr | line | Input | Line containing numbers |
| const char* | delim | Input | Delimiter string for tokens |
| ajuint | startcol | Input | Start token (1 to n) |
| ajuint | endcol | Input | End token (1 to n) |
| double* | RETURN | Allocated array of integers |
From EMBOSS 1.0.0
ajint* ajArrIntLine (
const AjPStr line,
const char* delim,
ajuint startcol,
ajuint endcol
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPStr | line | Input | Line containing numbers |
| const char* | delim | Input | Delimiter string for tokens |
| ajuint | startcol | Input | Start token (1 to n) |
| ajuint | endcol | Input | End token (1 to n) |
| ajint* | RETURN | Allocated array of integers |
From EMBOSS 1.0.0
float* ajArrFloatLine (
const AjPStr line,
const char* delim,
ajuint startcol,
ajuint endcol
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPStr | line | Input | Line containing numbers |
| const char* | delim | Input | Delimiter string for tokens |
| ajuint | startcol | Input | Start token (1 to n) |
| ajuint | endcol | Input | End token (1 to n) |
| float* | RETURN | Allocated array of integers |
From EMBOSS 1.0.0
AjPInt2d ajInt2dNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPInt2d | RETURN | Pointer to an empty integer array structure |
From EMBOSS 1.0.0
AjPInt2d ajInt2dNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size 1st dim |
| AjPInt2d | RETURN | Pointer to an empty integer 2d array struct of specified size. |
From EMBOSS 6.2.0
AjPInt2d ajInt2dNewResRes2 (
ajuint size,
ajuint size2
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size 1st dim |
| ajuint | size2 | Input | Reserved size 2nd dim |
| AjPInt2d | RETURN | Pointer to an empty integer 2d array struct of specified size. |
From EMBOSS 6.2.0
void ajInt2dDel (
AjPInt2d* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPInt2d* | thys | Delete | Pointer to the ajint array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 1.0.0
ajint ajInt2dGet (
const AjPInt2d thys,
ajuint elem1,
ajuint elem2
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPInt2d | thys | Input | Pointer to the ajint array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| ajint | RETURN | contents of array element |
From EMBOSS 1.0.0
AjBool ajInt2dPut (
AjPInt2d* thys,
ajuint elem1,
ajuint elem2,
ajint v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPInt2d* | thys | Output | Pointer to the ajint array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| ajint | v | Input | value to load. |
| AjBool | RETURN | true if any array was extended. |
From EMBOSS 1.0.0
void ajInt2dLen (
const AjPInt2d thys,
ajuint* len1,
ajuint* len2
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPInt2d | thys | Input | Pointer to the ajint array. |
| ajuint* | len1 | Output | Length of 1st dim |
| ajuint* | len2 | Output | Length of 2nd dim |
| void | RETURN |
From EMBOSS 1.0.0
ajint** ajInt2dInt (
const AjPInt2d thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPInt2d | thys | Input | Pointer to the ajint array. |
| ajint** | RETURN | converted value. |
From EMBOSS 1.0.0
AjPInt3d ajInt3dNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPInt3d | RETURN | Pointer to an empty integer array structure |
From EMBOSS 1.0.0
AjPInt3d ajInt3dNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size 1st dim |
| AjPInt3d | RETURN | Pointer to an empty integer 3d array struct of specified size. |
From EMBOSS 6.2.0
void ajInt3dDel (
AjPInt3d* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPInt3d* | thys | Delete | Pointer to the ajint array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 1.0.0
ajint ajInt3dGet (
const AjPInt3d thys,
ajuint elem1,
ajuint elem2,
ajuint elem3
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPInt3d | thys | Input | Pointer to the ajint array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| ajuint | elem3 | Input | array element. |
| ajint | RETURN | contents of array element |
From EMBOSS 1.0.0
AjBool ajInt3dPut (
AjPInt3d* thys,
ajuint elem1,
ajuint elem2,
ajuint elem3,
ajint v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPInt3d* | thys | Output | Pointer to the ajint array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| ajuint | elem3 | Input | array element. |
| ajint | v | Input | value to load. |
| AjBool | RETURN | true if any array was extended. |
From EMBOSS 1.0.0
void ajInt3dLen (
const AjPInt3d thys,
ajuint* len1,
ajuint* len2,
ajuint* len3
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPInt3d | thys | Input | Pointer to the ajint array. |
| ajuint* | len1 | Output | Length of 1st dim |
| ajuint* | len2 | Output | Length of 2nd dim |
| ajuint* | len3 | Output | Length of 3rd dim |
| void | RETURN |
From EMBOSS 1.0.0
ajint*** ajInt3dInt (
const AjPInt3d thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPInt3d | thys | Input | Pointer to the ajint array. |
| ajint*** | RETURN | converted values. |
From EMBOSS 1.0.0
AjPUint2d ajUint2dNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPUint2d | RETURN | Pointer to an empty integer array structure |
From EMBOSS 4.1.0
AjPUint2d ajUint2dNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size 1st dim |
| AjPUint2d | RETURN | Pointer to an empty integer 2d array struct of specified size. |
From EMBOSS 6.2.0
AjPUint2d ajUint2dNewResRes2 (
ajuint size,
ajuint size2
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size 1st dim |
| ajuint | size2 | Input | Reserved size 2nd dim |
| AjPUint2d | RETURN | Pointer to an empty integer 2d array struct of specified size. |
From EMBOSS 6.2.0
void ajUint2dDel (
AjPUint2d* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPUint2d* | thys | Delete | Pointer to the ajuint array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 4.1.0
ajuint ajUint2dGet (
const AjPUint2d thys,
ajuint elem1,
ajuint elem2
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPUint2d | thys | Input | Pointer to the ajuint array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| ajuint | RETURN | contents of array element |
From EMBOSS 4.1.0
AjBool ajUint2dPut (
AjPUint2d* thys,
ajuint elem1,
ajuint elem2,
ajuint v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPUint2d* | thys | Output | Pointer to the ajuint array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| ajuint | v | Input | value to load. |
| AjBool | RETURN | true if any array was extended. |
From EMBOSS 4.1.0
void ajUint2dLen (
const AjPUint2d thys,
ajuint* len1,
ajuint* len2
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPUint2d | thys | Input | Pointer to the ajuint array. |
| ajuint* | len1 | Output | Length of 1st dim |
| ajuint* | len2 | Output | Length of 2nd dim |
| void | RETURN |
From EMBOSS 4.1.0
ajuint** ajUint2dUint (
const AjPUint2d thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPUint2d | thys | Input | Pointer to the ajuint array. |
| ajuint** | RETURN | converted value. |
From EMBOSS 4.1.0
AjPUint3d ajUint3dNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPUint3d | RETURN | Pointer to an empty unsigned integer array structure |
From EMBOSS 4.1.0
AjPUint3d ajUint3dNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size 1st dim |
| AjPUint3d | RETURN | Pointer to an empty unsigned integer 3d array struct of specified size. |
From EMBOSS 6.2.0
void ajUint3dDel (
AjPUint3d* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPUint3d* | thys | Delete | Pointer to the ajuint array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 4.1.0
ajuint ajUint3dGet (
const AjPUint3d thys,
ajuint elem1,
ajuint elem2,
ajuint elem3
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPUint3d | thys | Input | Pointer to the ajuint array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| ajuint | elem3 | Input | array element. |
| ajuint | RETURN | contents of array element |
From EMBOSS 4.1.0
AjBool ajUint3dPut (
AjPUint3d* thys,
ajuint elem1,
ajuint elem2,
ajuint elem3,
ajuint v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPUint3d* | thys | Output | Pointer to the ajint array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| ajuint | elem3 | Input | array element. |
| ajuint | v | Input | value to load. |
| AjBool | RETURN | true if any array was extended. |
From EMBOSS 4.1.0
void ajUint3dLen (
const AjPUint3d thys,
ajuint* len1,
ajuint* len2,
ajuint* len3
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPUint3d | thys | Input | Pointer to the ajuint array. |
| ajuint* | len1 | Output | Length of 1st dim |
| ajuint* | len2 | Output | Length of 2nd dim |
| ajuint* | len3 | Output | Length of 3rd dim |
| void | RETURN |
From EMBOSS 4.1.0
ajuint*** ajUint3dUint (
const AjPUint3d thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPUint3d | thys | Input | Pointer to the ajuint array. |
| ajuint*** | RETURN | converted values. |
From EMBOSS 4.1.0
AjPFloat2d ajFloat2dNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPFloat2d | RETURN | Pointer to an empty float array structure |
From EMBOSS 1.0.0
AjPFloat2d ajFloat2dNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size 1st dim |
| AjPFloat2d | RETURN | Pointer to an empty float 2d array struct of specified size. |
From EMBOSS 6.2.0
void ajFloat2dDel (
AjPFloat2d* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPFloat2d* | thys | Delete | Pointer to the float array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 1.0.0
float ajFloat2dGet (
const AjPFloat2d thys,
ajuint elem1,
ajuint elem2
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPFloat2d | thys | Input | Pointer to the float array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| float | RETURN | contents of array element |
From EMBOSS 1.0.0
AjBool ajFloat2dPut (
AjPFloat2d* thys,
ajuint elem1,
ajuint elem2,
float v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPFloat2d* | thys | Output | Pointer to the float array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| float | v | Input | value to load. |
| AjBool | RETURN | true if any array was extended. |
From EMBOSS 1.0.0
void ajFloat2dLen (
const AjPFloat2d thys,
ajuint* len1,
ajuint* len2
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPFloat2d | thys | Input | Pointer to the float array. |
| ajuint* | len1 | Output | Length of 1st dim |
| ajuint* | len2 | Output | Length of 2nd dim |
| void | RETURN |
From EMBOSS 1.0.0
float** ajFloat2dFloat (
const AjPFloat2d thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPFloat2d | thys | Input | Pointer to the float array. |
| float** | RETURN | converted values. |
From EMBOSS 1.0.0
AjPFloat3d ajFloat3dNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPFloat3d | RETURN | Pointer to an empty float array structure |
From EMBOSS 1.0.0
AjPFloat3d ajFloat3dNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size 1st dim |
| AjPFloat3d | RETURN | Pointer to an empty float 3d array struct of specified size. |
From EMBOSS 6.2.0
void ajFloat3dDel (
AjPFloat3d* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPFloat3d* | thys | Delete | Pointer to the float array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 1.0.0
float ajFloat3dGet (
const AjPFloat3d thys,
ajuint elem1,
ajuint elem2,
ajuint elem3
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPFloat3d | thys | Input | Pointer to the float array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| ajuint | elem3 | Input | array element. |
| float | RETURN | contents of array element |
From EMBOSS 1.0.0
AjBool ajFloat3dPut (
AjPFloat3d* thys,
ajuint elem1,
ajuint elem2,
ajuint elem3,
float v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPFloat3d* | thys | Output | Pointer to the float array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| ajuint | elem3 | Input | array element. |
| float | v | Input | value to load. |
| AjBool | RETURN | true if any array was extended. |
From EMBOSS 1.0.0
void ajFloat3dLen (
const AjPFloat3d thys,
ajuint* len1,
ajuint* len2,
ajuint* len3
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPFloat3d | thys | Input | Pointer to the float array. |
| ajuint* | len1 | Output | Length of 1st dim |
| ajuint* | len2 | Output | Length of 2nd dim |
| ajuint* | len3 | Output | Length of 3rd dim |
| void | RETURN |
From EMBOSS 1.0.0
float*** ajFloat3dFloat (
const AjPFloat3d thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPFloat3d | thys | Input | Pointer to the float array. |
| float*** | RETURN | converted values. |
From EMBOSS 1.0.0
AjPDouble2d ajDouble2dNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPDouble2d | RETURN | Pointer to an empty double array structure |
From EMBOSS 1.0.0
AjPDouble2d ajDouble2dNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size 1st dim |
| AjPDouble2d | RETURN | Pointer to an empty double 2d array struct of specified size. |
From EMBOSS 6.2.0
void ajDouble2dDel (
AjPDouble2d* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPDouble2d* | thys | Delete | Pointer to the double array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 1.0.0
double ajDouble2dGet (
const AjPDouble2d thys,
ajuint elem1,
ajuint elem2
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPDouble2d | thys | Input | Pointer to the double array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| double | RETURN | contents of array element |
From EMBOSS 1.0.0
AjBool ajDouble2dPut (
AjPDouble2d* thys,
ajuint elem1,
ajuint elem2,
double v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPDouble2d* | thys | Output | Pointer to the double array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| double | v | Input | value to load. |
| AjBool | RETURN | true if any array was extended. |
From EMBOSS 1.0.0
void ajDouble2dLen (
const AjPDouble2d thys,
ajuint* len1,
ajuint* len2
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPDouble2d | thys | Input | Pointer to the double array. |
| ajuint* | len1 | Output | Length of 1st dim |
| ajuint* | len2 | Output | Length of 2nd dim |
| void | RETURN |
From EMBOSS 1.0.0
double** ajDouble2dDouble (
const AjPDouble2d thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPDouble2d | thys | Input | Pointer to the double array. |
| double** | RETURN | converted values. |
From EMBOSS 1.0.0
AjPDouble3d ajDouble3dNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPDouble3d | RETURN | Pointer to an empty double array structure |
From EMBOSS 1.0.0
AjPDouble3d ajDouble3dNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size 1st dim |
| AjPDouble3d | RETURN | Pointer to an empty double 3d array struct of specified size. |
From EMBOSS 6.2.0
void ajDouble3dDel (
AjPDouble3d* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPDouble3d* | thys | Delete | Pointer to the double array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 1.0.0
double ajDouble3dGet (
const AjPDouble3d thys,
ajuint elem1,
ajuint elem2,
ajuint elem3
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPDouble3d | thys | Input | Pointer to the double array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| ajuint | elem3 | Input | array element. |
| double | RETURN | contents of array element |
From EMBOSS 1.0.0
AjBool ajDouble3dPut (
AjPDouble3d* thys,
ajuint elem1,
ajuint elem2,
ajuint elem3,
double v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPDouble3d* | thys | Output | Pointer to the double array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| ajuint | elem3 | Input | array element. |
| double | v | Input | value to load. |
| AjBool | RETURN | true if any array was extended. |
From EMBOSS 1.0.0
void ajDouble3dLen (
const AjPDouble3d thys,
ajuint* len1,
ajuint* len2,
ajuint* len3
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPDouble3d | thys | Input | Pointer to the double array. |
| ajuint* | len1 | Output | Length of 1st dim |
| ajuint* | len2 | Output | Length of 2nd dim |
| ajuint* | len3 | Output | Length of 3rd dim |
| void | RETURN |
From EMBOSS 1.0.0
double*** ajDouble3dDouble (
const AjPDouble3d thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPDouble3d | thys | Input | Pointer to the double array. |
| double*** | RETURN | converted values. |
From EMBOSS 1.0.0
AjPShort2d ajShort2dNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPShort2d | RETURN | Pointer to an empty short array structure |
From EMBOSS 1.0.0
AjPShort2d ajShort2dNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size 1st dim |
| AjPShort2d | RETURN | Pointer to an empty short 2d array struct of specified size. |
From EMBOSS 6.2.0
void ajShort2dDel (
AjPShort2d* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPShort2d* | thys | Delete | Pointer to the short array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 1.0.0
short ajShort2dGet (
const AjPShort2d thys,
ajuint elem1,
ajuint elem2
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPShort2d | thys | Input | Pointer to the short array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| short | RETURN | contents of array element |
From EMBOSS 1.0.0
AjBool ajShort2dPut (
AjPShort2d* thys,
ajuint elem1,
ajuint elem2,
short v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPShort2d* | thys | Output | Pointer to the short array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| short | v | Input | value to load. |
| AjBool | RETURN | true if any array was extended. |
From EMBOSS 1.0.0
void ajShort2dLen (
const AjPShort2d thys,
ajuint* len1,
ajuint* len2
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPShort2d | thys | Input | Pointer to the short array. |
| ajuint* | len1 | Output | Length of 1st dim |
| ajuint* | len2 | Output | Length of 2nd dim |
| void | RETURN |
From EMBOSS 1.0.0
short** ajShort2dShort (
const AjPShort2d thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPShort2d | thys | Input | Pointer to the short array. |
| short** | RETURN | converted values |
From EMBOSS 1.0.0
AjPShort3d ajShort3dNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPShort3d | RETURN | Pointer to an empty short array structure |
From EMBOSS 1.0.0
AjPShort3d ajShort3dNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size 1st dim |
| AjPShort3d | RETURN | Pointer to an empty short 3d array struct of specified size. |
From EMBOSS 6.2.0
void ajShort3dDel (
AjPShort3d* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPShort3d* | thys | Delete | Pointer to the short array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 1.0.0
short ajShort3dGet (
const AjPShort3d thys,
ajuint elem1,
ajuint elem2,
ajuint elem3
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPShort3d | thys | Input | Pointer to the short array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| ajuint | elem3 | Input | array element. |
| short | RETURN | contents of array element |
From EMBOSS 1.0.0
AjBool ajShort3dPut (
AjPShort3d* thys,
ajuint elem1,
ajuint elem2,
ajuint elem3,
short v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPShort3d* | thys | Output | Pointer to the short array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| ajuint | elem3 | Input | array element. |
| short | v | Input | value to load. |
| AjBool | RETURN | true if any array was extended. |
From EMBOSS 1.0.0
void ajShort3dLen (
const AjPShort3d thys,
ajuint* len1,
ajuint* len2,
ajuint* len3
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPShort3d | thys | Input | Pointer to the short array. |
| ajuint* | len1 | Output | Length of 1st dim |
| ajuint* | len2 | Output | Length of 2nd dim |
| ajuint* | len3 | Output | Length of 3rd dim |
| void | RETURN |
From EMBOSS 1.0.0
short*** ajShort3dShort (
const AjPShort3d thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPShort3d | thys | Input | Pointer to the short array. |
| short*** | RETURN | converted values. |
From EMBOSS 1.0.0
AjPLong2d ajLong2dNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPLong2d | RETURN | Pointer to an empty ajlong array structure |
From EMBOSS 1.0.0
AjPLong2d ajLong2dNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size 1st dim |
| AjPLong2d | RETURN | Pointer to an empty ajlong 2d array struct of specified size. |
From EMBOSS 6.2.0
void ajLong2dDel (
AjPLong2d* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPLong2d* | thys | Delete | Pointer to the ajlong array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 1.0.0
ajlong ajLong2dGet (
const AjPLong2d thys,
ajuint elem1,
ajuint elem2
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPLong2d | thys | Input | Pointer to the ajlong array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| ajlong | RETURN | contents of array element |
From EMBOSS 1.0.0
AjBool ajLong2dPut (
AjPLong2d* thys,
ajuint elem1,
ajuint elem2,
ajlong v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPLong2d* | thys | Output | Pointer to the ajlong array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| ajlong | v | Input | value to load. |
| AjBool | RETURN | true if any array was extended. |
From EMBOSS 1.0.0
void ajLong2dLen (
const AjPLong2d thys,
ajuint* len1,
ajuint* len2
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPLong2d | thys | Input | Pointer to the ajlong array. |
| ajuint* | len1 | Output | Length of 1st dim |
| ajuint* | len2 | Output | Length of 2nd dim |
| void | RETURN |
From EMBOSS 1.0.0
ajlong** ajLong2dLong (
const AjPLong2d thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPLong2d | thys | Input | Pointer to the ajlong array. |
| ajlong** | RETURN | converted values. |
From EMBOSS 1.0.0
AjPLong3d ajLong3dNew (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPLong3d | RETURN | Pointer to an empty ajlong array structure |
From EMBOSS 1.0.0
AjPLong3d ajLong3dNewRes (
ajuint size
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint | size | Input | Reserved size 1st dim |
| AjPLong3d | RETURN | Pointer to an empty ajlong 3d array struct of specified size. |
From EMBOSS 6.2.0
void ajLong3dDel (
AjPLong3d* thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPLong3d* | thys | Delete | Pointer to the ajlong array to be deleted. The pointer is always deleted. |
| void | RETURN |
From EMBOSS 1.0.0
ajlong ajLong3dGet (
const AjPLong3d thys,
ajuint elem1,
ajuint elem2,
ajuint elem3
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPLong3d | thys | Input | Pointer to the ajlong array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| ajuint | elem3 | Input | array element. |
| ajlong | RETURN | contents of array element |
From EMBOSS 1.0.0
AjBool ajLong3dPut (
AjPLong3d* thys,
ajuint elem1,
ajuint elem2,
ajuint elem3,
ajlong v
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| AjPLong3d* | thys | Output | Pointer to the ajlong array. |
| ajuint | elem1 | Input | array element. |
| ajuint | elem2 | Input | array element. |
| ajuint | elem3 | Input | array element. |
| ajlong | v | Input | value to load. |
| AjBool | RETURN | true if any array was extended. |
From EMBOSS 1.0.0
void ajLong3dLen (
const AjPLong3d thys,
ajuint* len1,
ajuint* len2,
ajuint* len3
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPLong3d | thys | Input | Pointer to the ajlong array. |
| ajuint* | len1 | Output | Length of 1st dim |
| ajuint* | len2 | Output | Length of 2nd dim |
| ajuint* | len3 | Output | Length of 3rd dim |
| void | RETURN |
From EMBOSS 1.0.0
ajlong*** ajLong3dLong (
const AjPLong3d thys
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const AjPLong3d | thys | Input | Pointer to the ajlong array. |
| ajlong*** | RETURN | converted values. |
From EMBOSS 1.0.0
void ajArrExit (
void
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| void | RETURN |
From EMBOSS 4.0.0