Header menu logo ResizeArray

Operators Module

Open this module to get access to the operators +++ and ++ to combines the contents of two Sequences or ICollection<'T> into a new ResizeArray

Functions and values

Function or value Description

a ++ b

Full Usage: a ++ b

Parameters:
Returns: ResizeArray<'T>
Modifiers: inline
Type parameters: 'T

Operator ++ to copies the contents of two ICollection<'T> into a new ResizeArray. The capacity of the new ResizeArray is the sum of the count of the two ICollection<'T>.

a : ICollection<'T>
b : ICollection<'T>
Returns: ResizeArray<'T>

a +++ b

Full Usage: a +++ b

Parameters:
    a : 'T seq
    b : 'T seq

Returns: ResizeArray<'T>
Modifiers: inline
Type parameters: 'T

Operator +++ to copies the contents of two Sequences into a new ResizeArray

a : 'T seq
b : 'T seq
Returns: ResizeArray<'T>

Type something to start searching.