List.replicate<'T> Function (F#)
Creates a list of a specified length with every element set to the given value.
Namespace/Module Path: Microsoft.FSharp.Collections.List
Assembly: FSharp.Core (in FSharp.Core.dll)
// Signature:
List.replicate : int -> 'T -> 'T list
// Usage:
List.replicate count initial
Parameters
count
Type: intThe number of elements to replicate.
initial
Type: 'TThe value to replicate
Return Value
The generated list.
Remarks
This function is named Replicate in compiled assemblies. If you are accessing the function from a .NET language other than F#, or through reflection, use this name.
Example
The following code shows how to use List.replicate.
let testList = List.replicate 4 "test"
printfn "%A" testList
Output
["test"; "test"; "test"; "test"]
Platforms
Windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2
Version Information
F# Core Library Versions
Supported in: 2.0, 4.0, Portable