FSharpPlus


IList Module

Additional operations IList<'T>

Functions and values

Function or value Description

IList.iter mapping source

Full Usage: IList.iter mapping source

Parameters:
    mapping : 'T -> unit
    source : IList<'T>

mapping : 'T -> unit
source : IList<'T>

IList.map mapping source

Full Usage: IList.map mapping source

Parameters:
    mapping : 'T -> 'U
    source : IList<'T>

Returns: IList<'U>
mapping : 'T -> 'U
source : IList<'T>
Returns: IList<'U>

IList.ofArray source

Full Usage: IList.ofArray source

Parameters:
    source : 'T[]

Returns: IList<'T>
source : 'T[]
Returns: IList<'T>

IList.ofList source

Full Usage: IList.ofList source

Parameters:
    source : 'T list

Returns: IList<'T>
source : 'T list
Returns: IList<'T>

IList.ofSeq source

Full Usage: IList.ofSeq source

Parameters:
    source : 'T seq

Returns: IList<'T>
source : 'T seq
Returns: IList<'T>

IList.toIReadOnlyList source

Full Usage: IList.toIReadOnlyList source

Parameters:
    source : IList<'a> - The System.Collections.Generic.IList

Returns: IReadOnlyList<'a> The list converted to a System.Collections.Generic.IReadOnlyList

Converts an IList to an IReadOnlyList (from System.Collections.Generic).

source : IList<'a>

The System.Collections.Generic.IList

Returns: IReadOnlyList<'a>

The list converted to a System.Collections.Generic.IReadOnlyList