다음을 통해 공유


Seq.concat<'Collection,'T> 함수(F#)

업데이트: 2010년 8월

지정된 열거의 열거를 연결된 단일 열거로 결합합니다.

네임스페이스/모듈 경로: Microsoft.FSharp.Collections.Seq

어셈블리: FSharp.Core(FSharp.Core.dll)

// Signature:
Seq.concat : seq<'Collection> -> seq<'T> (requires 'Collection :> seq<'T>)

// Usage:
Seq.concat sources

매개 변수

  • sources
    형식: seq<'Collection>

    입력 열거의 열거입니다.

예외

Exception

조건

ArgumentNullException

입력 시퀀스가 null인 경우 throw됩니다.

반환 값

결과 시퀀스입니다.

설명

반환된 시퀀스는 스레드 간에 안전하게 전달할 수 있습니다. 그러나 반환된 시퀀스에서 생성된 개별 IEnumerator 값에는 동시에 액세스할 수 없습니다.

컴파일된 어셈블리에서 이 함수의 이름은 Concat입니다. F# 이외의 언어에서 함수에 액세스하거나 리플렉션을 통해 함수에 액세스하는 경우 이 이름을 사용합니다.

예제

다음 코드에서는 Seq.concat을 사용하는 방법을 보여 줍니다.

// Using Seq.append to append an array to a list.
let seq1to10 = Seq.append [1; 2; 3] [| 4; 5; 6; 7; 8; 9; 10 |]
// Using Seq.concat to concatenate a list of arrays.
let seqResult = Seq.concat [ [| 1; 2; 3 |]; [| 4; 5; 6 |]; [|7; 8; 9|] ]
Seq.iter (fun elem -> printf "%d " elem) seq1to10
printfn ""
Seq.iter (fun elem -> printf "%d " elem) seqResult

Output

  

플랫폼

Windows 7, Windows Vista SP2, Windows XP SP3, Windows XP x64 SP2, Windows Server 2008 R2, Windows Server 2008 SP2, Windows Server 2003 SP2

버전 정보

F# 런타임

지원되는 버전: 2.0, 4.0

Silverlight

지원되는 버전: 3

참고 항목

참조

Collections.Seq 모듈(F#)

Microsoft.FSharp.Collections 네임스페이스(F#)

변경 기록

날짜

변경 내용

이유

2010년 8월

코드 예제를 추가했습니다.

향상된 기능 관련 정보