Arrays
01 Syntax
Microsoft.VisualBasic.Language.Java.Arrays
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| fill | 1 | fill and set all elements in target array a with a specific value val. |
| subList | 1 | Returns a view of the portion of this list between the specified fromIndex, inclusive, and toIndex, exclusive. |
| fill | 1 | |
| copyOf | 1 | |
| copyOfRange | 1 | |
| shuffle | 1 | |
| subList | 1 | |
| Min | 1 | |
| Max | 1 | |
| toString | 1 | |
| hashCode | 1 |
03 Members
fill``1(
``0(), ``0)fill and set all elements in target array a with a specific value val.
Remarks
this function will not break the given vector its class reference
Type Parameters
| Name | Description |
|---|---|
T |
Parameters
| Name | Type | Description |
|---|---|---|
a | ``0() | - |
val | ``0 | - |
subList``1(
IList(Of ``0), Int32, Int32)Returns a view of the portion of this list between the specified fromIndex, inclusive, and toIndex, exclusive. (If fromIndex and toIndex are equal, the returned list is empty.) The returned list is backed by this list, so non-structural changes in the returned list are reflected in this list, and vice-versa. The returned list supports all of the optional list operations supported by this list.
Type Parameters
| Name | Description |
|---|---|
T |
Parameters
| Name | Type | Description |
|---|---|---|
list | IList(Of ``0) | - |
fromIndex% | Int32 | low endpoint (inclusive) of the subList |
toIndex% | Int32 | high endpoint (exclusive) of the subList |
Returns
a view of the specified range within this list
fill(
T(), T)copyOf(
T(), Int32)copyOfRange(
T(), Int32, Int32)shuffle(List(Of T))
subList(
IList(Of T), Int32, Int32)Min(
IEnumerable(Of T))Max(
IEnumerable(Of T))toString(
IEnumerable(Of T))hashCode(
IEnumerable(Of Int32))