Skip to content

Commit

Permalink
Merge pull request dotnet#7 from liboz/manofstick
Browse files Browse the repository at this point in the history
Seq.indexed
  • Loading branch information
manofstick authored Oct 14, 2016
2 parents 2dc69f0 + 2e78dbd commit 4e31b0b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/fsharp/FSharp.Core/seq.fs
Original file line number Diff line number Diff line change
Expand Up @@ -1537,8 +1537,7 @@ namespace Microsoft.FSharp.Collections

[<CompiledName("Indexed")>]
let indexed source =
checkNonNull "source" source
mapi (fun i x -> i,x) source
source |> seqFactory (SeqComposer.MapiFactory (fun i x -> i,x) )

[<CompiledName("Zip")>]
let zip source1 source2 =
Expand Down

0 comments on commit 4e31b0b

Please sign in to comment.