void ajSortFloatDecI (
const float* a,
ajuint* p,
ajuint n
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const float* | a | Input | Array of floats used in sort tests |
| ajuint* | p | Modify | Array of unsigned ints to be sorted depending on floats. |
| ajuint | n | Input | Number of elements to sort |
| void | RETURN |
From EMBOSS 1.0.0
void ajSortIntDecI (
const ajint* a,
ajuint* p,
ajuint n
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const ajint* | a | Input | Array of ints used in sort tests |
| ajuint* | p | Modify | Array of ints to be sorted depending on ajints. |
| ajuint | n | Input | Number of elements to sort |
| void | RETURN |
From EMBOSS 1.0.0
void ajSortUintDecI (
const ajuint* a,
ajuint* p,
ajuint n
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const ajuint* | a | Input | Array of unsigned ints used in sort tests |
| ajuint* | p | Modify | Array of ints to be sorted depending on unsigned ints |
| ajuint | n | Input | Number of elements to sort |
| void | RETURN |
From EMBOSS 4.1.0
void ajSortFloatIncI (
const float* a,
ajuint* p,
ajuint n
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const float* | a | Input | Array of floats used in sort tests |
| ajuint* | p | Modify | Array of ints to be sorted depending on floats. |
| ajuint | n | Input | Number of elements to sort |
| void | RETURN |
From EMBOSS 1.0.0
void ajSortIntIncI (
const ajint* a,
ajuint* p,
ajuint n
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const ajint* | a | Input | Array of ints used in sort tests |
| ajuint* | p | Modify | Array of ints to be sorted depending on ints. |
| ajuint | n | Input | Number of elements to sort |
| void | RETURN |
From EMBOSS 1.0.0
void ajSortUintIncI (
const ajuint* a,
ajuint* p,
ajuint n
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| const ajuint* | a | Input | Array of ints used in sort tests |
| ajuint* | p | Modify | Array of uints to be sorted depending on uints. |
| ajuint | n | Input | Number of elements to sort |
| void | RETURN |
From EMBOSS 4.1.0
void ajSorttwoIntIncI (
ajint* a,
ajuint* p,
ajuint n
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajint* | a | Modify | Array of ints used in sort tests and itself sorted |
| ajuint* | p | Modify | Second array of ints to be sorted |
| ajuint | n | Input | Number of elements to sort |
| void | RETURN |
From EMBOSS 6.2.0
void ajSorttwoUintIncI (
ajuint* a,
ajuint* p,
ajuint n
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint* | a | Modify | Array of ints used in sort tests and itself sorted |
| ajuint* | p | Modify | Second array of ints to be sorted |
| ajuint | n | Input | Number of elements to sort |
| void | RETURN |
From EMBOSS 6.2.0
void ajSortFloatDec (
float* a,
ajuint n
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| float* | a | Modify | Array of floats to sort |
| ajuint | n | Input | Number of elements to sort |
| void | RETURN |
From EMBOSS 1.0.0
void ajSortIntDec (
ajint* a,
ajuint n
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajint* | a | Modify | Array of ints to sort |
| ajuint | n | Input | Number of elements to sort |
| void | RETURN |
From EMBOSS 1.0.0
void ajSortUintDec (
ajuint* a,
ajuint n
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint* | a | Modify | Array of unsigned ints to sort |
| ajuint | n | Input | Number of elements to sort |
| void | RETURN |
From EMBOSS 4.1.0
void ajSortFloatInc (
float* a,
ajuint n
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| float* | a | Modify | Array of floats to sort |
| ajuint | n | Input | Number of elements to sort |
| void | RETURN |
From EMBOSS 1.0.0
void ajSortIntInc (
ajint* a,
ajuint n
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajint* | a | Modify | Array of ints to sort |
| ajuint | n | Input | Number of elements to sort |
| void | RETURN |
From EMBOSS 1.0.0
void ajSortUintInc (
ajuint* a,
ajuint n
);
| Type | Name | Read/Write | Description |
|---|---|---|---|
| ajuint* | a | Modify | Array of ints to sort |
| ajuint | n | Input | Number of elements to sort |
| void | RETURN |
From EMBOSS 4.1.0