Array.permute<'T> 함수(F#)
업데이트: 2010년 5월
모든 요소가 지정된 순열에 따라 배치된 배열을 반환합니다.
네임스페이스/모듈 경로: Microsoft.FSharp.Collections.Array
어셈블리: FSharp.Core(FSharp.Core.dll)
// Signature:
Array.permute : (int -> int) -> 'T [] -> 'T []
// Usage:
Array.permute indexMap array
매개 변수
반환 값
배치된 배열입니다.
설명
컴파일된 어셈블리에서 이 함수의 이름은 Permute입니다. F# 이외의 언어에서 기능에 액세스하거나 리플렉션을 통해 기능에 액세스하는 경우 이 이름을 사용합니다.
예제
다음 코드에서는 Array.permute의 사용 예를 보여 줍니다.
let printPermutation n array1 =
let length = Array.length array1
if (n > 0 && n < length) then
Array.permute (fun index -> (index + n) % length) array1
else
array1
|> printfn "%A"
let array1 = [| 1 .. 5 |]
// There are 5 valid permutations of array1, with n from 0 to 4.
for n in 0 .. 4 do
printPermutation n array1
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
참고 항목
참조
Microsoft.FSharp.Collections 네임스페이스(F#)
변경 기록
날짜 |
변경 내용 |
이유 |
---|---|---|
2010년 5월 |
코드 예제를 추가했습니다. |
향상된 기능 관련 정보 |