nuget server logo nuget api documents
↑

API Docs / Microsoft.VisualBasic.Runtime / Arrays

Arrays

Full name Microsoft.VisualBasic.Language.Java.Arrays Assembly Microsoft.VisualBasic.Runtime Members 11

01 Syntax

Microsoft.VisualBasic.Language.Java.Arrays

02 Methods

NameOverloadsSummary
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

method fill #
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
NameDescription
T
Parameters
NameTypeDescription
a``0()

-

val``0

-

method subList #
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
NameDescription
T
Parameters
NameTypeDescription
listIList(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

method fill #
fill(T(), T)
method copyOf #
copyOf(T(), Int32)
method copyOfRange #
copyOfRange(T(), Int32, Int32)
method shuffle #
shuffle(List(Of T))
method subList #
subList(IList(Of T), Int32, Int32)
method Min #
Min(IEnumerable(Of T))
method Max #
Max(IEnumerable(Of T))
method toString #
toString(IEnumerable(Of T))
method hashCode #
hashCode(IEnumerable(Of Int32))