Extension methods for use with generic collections More...
Static Public Member Functions | |
static string | ToLabelString (this float[] arr, string format, string separator, char openingBracket, char closingBracket) |
Pretty-print a float vector label. More... | |
static string | ToLabelString< TValue > (this TValue[] arr, string separator, char openingBracket, char closingBracket) |
Pretty-print a vector label. More... | |
static string | ToLabelString< TValue > (this TValue[] arr, string separator) |
Pretty-print a vector label. More... | |
static string | ToLabelString (this float[] arr, string format, string separator) |
Pretty-print a vector label. More... | |
static string | ToLabelString< TValue > (this TValue[] arr) |
Pretty-print a vector label. More... | |
static bool | HasSameValues (this float[] a, float[] b) |
Check two 1-dimensional arrays for content equality. More... | |
Extension methods for use with generic collections
|
static |
Check two 1-dimensional arrays for content equality.
a | array 1 to be checked |
b | array 2 to be checked |
|
static |
Pretty-print a vector label.
arr | the array to attach the extension method to |
separator | character that separates the entries |
format | format string to use |
|
static |
Pretty-print a float vector label.
arr | The array to apply the extension method to. |
format | Format string to use for printing. |
separator | The separator character to separate the vector entries with. |
openingBracket | The opening bracket for outputting the vector content. |
closingBracket | The closing bracket for outputting the vector content. |
|
static |
Pretty-print a vector label.
arr | Array to print. |
TValue | Type of the array entries. |
|
static |
Pretty-print a vector label.
TValue | type of the elements stored in the array |
arr | the array to attach the extension method to |
separator | character that separates the entries |
|
static |
Pretty-print a vector label.
TValue | type of the elements stored in the array |
arr | the array to attach the extension method to |
separator | character that separates the entries |
openingBracket | left bracket character |
closingBracket | right bracket character |