다음을 통해 공유


AnalyzeSentimentResultArray interface

입력 문서 일괄 처리에 해당하고 일괄 처리 작업에 대한 정보로 주석이 추가된 AnalyzeSentimentResult 개체의 배열입니다.

Extends

속성

modelVersion

이 입력 문서 일괄 처리에서 이 작업에서 사용하는 텍스트 분석 모델의 버전입니다.

statistics

입력 문서 일괄 처리 및 서비스에서 처리된 방법에 대한 통계입니다. 이 속성은 클라이언트 호출에서 includeStatistics가 true로 설정된 경우 값을 갖습니다.

상속된 속성

length

배열의 길이를 가져오거나 설정합니다. 이는 배열에서 가장 높은 인덱스보다 높은 숫자 1입니다.

상속된 메서드

at(number)
concat((AnalyzeSentimentResult | ConcatArray<AnalyzeSentimentResult>)[])

둘 이상의 배열을 결합합니다. 이 메서드는 기존 배열을 수정하지 않고 새 배열을 반환합니다.

concat(ConcatArray<AnalyzeSentimentResult>[])

둘 이상의 배열을 결합합니다. 이 메서드는 기존 배열을 수정하지 않고 새 배열을 반환합니다.

copyWithin(number, number, number)

시작 및 끝으로 식별된 배열의 섹션을 위치 대상에서 시작하는 동일한 배열로 복사한 후 이 개체를 반환합니다.

entries()

배열의 모든 항목에 대해 반복 가능한 키, 값 쌍을 반환합니다.

every((value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => unknown, any)

배열의 모든 멤버가 지정된 테스트를 충족하는지 여부를 결정합니다.

every<S>((value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => value, any)

배열의 모든 멤버가 지정된 테스트를 충족하는지 여부를 결정합니다.

fill(AnalyzeSentimentResult, number, number)

모든 배열 요소를 start 정적 endvalue 인덱스로 변경하고 수정된 배열을 반환합니다.

filter((value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => unknown, any)

콜백 함수에 지정된 조건을 충족하는 배열의 요소를 반환합니다.

filter<S>((value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => value, any)

콜백 함수에 지정된 조건을 충족하는 배열의 요소를 반환합니다.

find((value: AnalyzeSentimentResult, index: number, obj: AnalyzeSentimentResult[]) => unknown, any)
find<S>((this: void, value: AnalyzeSentimentResult, index: number, obj: AnalyzeSentimentResult[]) => value, any)

조건자가 true이고 정의되지 않은 배열의 첫 번째 요소 값을 반환합니다.

findIndex((value: AnalyzeSentimentResult, index: number, obj: AnalyzeSentimentResult[]) => unknown, any)

조건자가 true인 배열에서 첫 번째 요소의 인덱스가 반환되고, 그렇지 않으면 -1.

flat<A, D>(A, D)

모든 하위 배열 요소가 지정된 깊이까지 재귀적으로 연결된 새 배열을 반환합니다.

flatMap<U, This>((this: This, value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => U | (readonly U[]), This)

배열의 각 요소에 대해 정의된 콜백 함수를 호출합니다. 그런 다음 결과를 새 배열로 평면화합니다. 이는 맵과 동일하고 깊이가 1인 플랫이 뒤따릅니다.

forEach((value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => void, any)

배열의 각 요소에 대해 지정된 작업을 수행합니다.

includes(AnalyzeSentimentResult, number)

배열에 특정 요소가 포함되어 있는지 여부를 확인하여 true 또는 false를 적절하게 반환합니다.

indexOf(AnalyzeSentimentResult, number)

배열에서 값이 처음 나타나는 인덱스 또는 없는 경우 -1 반환합니다.

join(string)

지정된 구분 기호 문자열로 구분된 문자열에 배열의 모든 요소를 추가합니다.

keys()

배열에서 반복 가능한 키를 반환합니다.

lastIndexOf(AnalyzeSentimentResult, number)

배열에서 마지막으로 발생한 지정된 값의 인덱스 또는 없는 경우 -1 반환합니다.

map<U>((value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => U, any)

배열의 각 요소에 대해 정의된 콜백 함수를 호출하고 결과를 포함하는 배열을 반환합니다.

pop()

배열에서 마지막 요소를 제거하고 반환합니다. 배열이 비어 있으면 정의되지 않은 배열이 반환되고 배열이 수정되지 않습니다.

push(AnalyzeSentimentResult[])

배열의 끝에 새 요소를 추가하고 배열의 새 길이를 반환합니다.

reduce((previousValue: AnalyzeSentimentResult, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => AnalyzeSentimentResult)

배열의 모든 요소에 대해 지정된 콜백 함수를 호출합니다. 콜백 함수의 반환 값은 누적된 결과이며 콜백 함수에 대한 다음 호출에서 인수로 제공됩니다.

reduce((previousValue: AnalyzeSentimentResult, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => AnalyzeSentimentResult, AnalyzeSentimentResult)
reduce<U>((previousValue: U, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => U, U)

배열의 모든 요소에 대해 지정된 콜백 함수를 호출합니다. 콜백 함수의 반환 값은 누적된 결과이며 콜백 함수에 대한 다음 호출에서 인수로 제공됩니다.

reduceRight((previousValue: AnalyzeSentimentResult, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => AnalyzeSentimentResult)

배열의 모든 요소에 대해 지정된 콜백 함수를 내림차순으로 호출합니다. 콜백 함수의 반환 값은 누적된 결과이며 콜백 함수에 대한 다음 호출에서 인수로 제공됩니다.

reduceRight((previousValue: AnalyzeSentimentResult, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => AnalyzeSentimentResult, AnalyzeSentimentResult)
reduceRight<U>((previousValue: U, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => U, U)

배열의 모든 요소에 대해 지정된 콜백 함수를 내림차순으로 호출합니다. 콜백 함수의 반환 값은 누적된 결과이며 콜백 함수에 대한 다음 호출에서 인수로 제공됩니다.

reverse()

배열의 요소를 현재 위치에 역방향으로 바뀝니다. 이 메서드는 배열을 변경하고 동일한 배열에 대한 참조를 반환합니다.

shift()

배열에서 첫 번째 요소를 제거하고 반환합니다. 배열이 비어 있으면 정의되지 않은 배열이 반환되고 배열이 수정되지 않습니다.

slice(number, number)

배열 섹션의 복사본을 반환합니다. 시작과 끝 모두에서 음수 인덱스로 배열의 끝에서 오프셋을 나타낼 수 있습니다. 예를 들어 -2 배열의 두 번째에서 마지막 요소를 참조합니다.

some((value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => unknown, any)

지정된 콜백 함수가 배열의 요소에 대해 true를 반환하는지 여부를 결정합니다.

sort((a: AnalyzeSentimentResult, b: AnalyzeSentimentResult) => number)

배열을 제자리에 정렬합니다. 이 메서드는 배열을 변경하고 동일한 배열에 대한 참조를 반환합니다.

splice(number, number)

배열에서 요소를 제거하고 필요한 경우 해당 위치에 새 요소를 삽입하고 삭제된 요소를 반환합니다.

splice(number, number, AnalyzeSentimentResult[])

배열에서 요소를 제거하고 필요한 경우 해당 위치에 새 요소를 삽입하고 삭제된 요소를 반환합니다.

toLocaleString()

배열의 문자열 표현을 반환합니다. 요소는 toLocaleString 메서드를 사용하여 문자열로 변환됩니다.

toString()

배열의 문자열 표현을 반환합니다.

unshift(AnalyzeSentimentResult[])

배열의 시작 부분에 새 요소를 삽입하고 배열의 새 길이를 반환합니다.

values()

배열에서 반복 가능한 값을 반환합니다.

[iterator]()

반복기

[unscopables]()

'with' 문에 사용될 때 속성 값이 'true'인 개체를 반환합니다.

속성 세부 정보

modelVersion

이 입력 문서 일괄 처리에서 이 작업에서 사용하는 텍스트 분석 모델의 버전입니다.

modelVersion: string

속성 값

string

statistics

입력 문서 일괄 처리 및 서비스에서 처리된 방법에 대한 통계입니다. 이 속성은 클라이언트 호출에서 includeStatistics가 true로 설정된 경우 값을 갖습니다.

statistics?: TextDocumentBatchStatistics

속성 값

상속된 속성 세부 정보

length

배열의 길이를 가져오거나 설정합니다. 이는 배열에서 가장 높은 인덱스보다 높은 숫자 1입니다.

length: number

속성 값

number

Array.length에서 상속된

상속된 메서드 세부 정보

at(number)

function at(index: number): undefined | AnalyzeSentimentResult

매개 변수

index

number

반환

Array.at 상속된

concat((AnalyzeSentimentResult | ConcatArray<AnalyzeSentimentResult>)[])

둘 이상의 배열을 결합합니다. 이 메서드는 기존 배열을 수정하지 않고 새 배열을 반환합니다.

function concat(items: (AnalyzeSentimentResult | ConcatArray<AnalyzeSentimentResult>)[]): AnalyzeSentimentResult[]

매개 변수

items

(AnalyzeSentimentResult | ConcatArray<AnalyzeSentimentResult>)[]

배열의 끝에 추가할 추가 배열 및/또는 항목입니다.

반환

Array.concat에서 상속된

concat(ConcatArray<AnalyzeSentimentResult>[])

둘 이상의 배열을 결합합니다. 이 메서드는 기존 배열을 수정하지 않고 새 배열을 반환합니다.

function concat(items: ConcatArray<AnalyzeSentimentResult>[]): AnalyzeSentimentResult[]

매개 변수

items

ConcatArray<AnalyzeSentimentResult>[]

배열의 끝에 추가할 추가 배열 및/또는 항목입니다.

반환

Array.concat에서 상속된

copyWithin(number, number, number)

시작 및 끝으로 식별된 배열의 섹션을 위치 대상에서 시작하는 동일한 배열로 복사한 후 이 개체를 반환합니다.

function copyWithin(target: number, start: number, end?: number): AnalyzeSentimentResultArray

매개 변수

target

number

대상이 음수이면 길이가 배열의 길이인 length+target으로 처리됩니다.

start

number

시작이 음수이면 length+start로 처리됩니다. end가 음수이면 length+end로 처리됩니다.

end

number

지정하지 않으면 이 개체의 길이가 기본값으로 사용됩니다.

반환

Array.copyWithin에서 상속된

entries()

배열의 모든 항목에 대해 반복 가능한 키, 값 쌍을 반환합니다.

function entries(): IterableIterator<[number, AnalyzeSentimentResult]>

반환

IterableIterator<[number, AnalyzeSentimentResult]>

array.entries에서 상속된

every((value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => unknown, any)

배열의 모든 멤버가 지정된 테스트를 충족하는지 여부를 결정합니다.

function every(predicate: (value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => unknown, thisArg?: any): boolean

매개 변수

predicate

(value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => unknown

최대 3개의 인수를 허용하는 함수입니다. 모든 메서드는 조건자가 부울 값 false로 강제 변환 가능한 값을 반환하거나 배열의 끝까지 반환할 때까지 배열의 각 요소에 대한 조건자 함수를 호출합니다.

thisArg

any

이 키워드가 조건자 함수에서 참조할 수 있는 개체입니다. thisArg를 생략하면 정의되지 않은 값이 이 값으로 사용됩니다.

반환

boolean

array.every에서 상속된

every<S>((value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => value, any)

배열의 모든 멤버가 지정된 테스트를 충족하는지 여부를 결정합니다.

function every<S>(predicate: (value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => value, thisArg?: any): this

매개 변수

predicate

(value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => value

최대 3개의 인수를 허용하는 함수입니다. 모든 메서드는 조건자가 부울 값 false로 강제 변환 가능한 값을 반환하거나 배열의 끝까지 반환할 때까지 배열의 각 요소에 대한 조건자 함수를 호출합니다.

thisArg

any

이 키워드가 조건자 함수에서 참조할 수 있는 개체입니다. thisArg를 생략하면 정의되지 않은 값이 이 값으로 사용됩니다.

반환

this

array.every에서 상속된

fill(AnalyzeSentimentResult, number, number)

모든 배열 요소를 start 정적 endvalue 인덱스로 변경하고 수정된 배열을 반환합니다.

function fill(value: AnalyzeSentimentResult, start?: number, end?: number): AnalyzeSentimentResultArray

매개 변수

value
AnalyzeSentimentResult

배열 섹션을 채울 값

start

number

인덱스로 배열 채우기를 시작합니다. start가 음수이면 길이가 배열의 길이인 length+start로 처리됩니다.

end

number

배열 채우기를 중지하는 인덱스입니다. end가 음수이면 length+end로 처리됩니다.

반환

Array.fill에서 상속된

filter((value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => unknown, any)

콜백 함수에 지정된 조건을 충족하는 배열의 요소를 반환합니다.

function filter(predicate: (value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => unknown, thisArg?: any): AnalyzeSentimentResult[]

매개 변수

predicate

(value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => unknown

최대 3개의 인수를 허용하는 함수입니다. 필터 메서드는 배열의 각 요소에 대해 조건자 함수를 한 번 호출합니다.

thisArg

any

이 키워드가 조건자 함수에서 참조할 수 있는 개체입니다. thisArg를 생략하면 정의되지 않은 값이 이 값으로 사용됩니다.

반환

Array.filter에서 상속된

filter<S>((value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => value, any)

콜백 함수에 지정된 조건을 충족하는 배열의 요소를 반환합니다.

function filter<S>(predicate: (value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => value, thisArg?: any): S[]

매개 변수

predicate

(value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => value

최대 3개의 인수를 허용하는 함수입니다. 필터 메서드는 배열의 각 요소에 대해 조건자 함수를 한 번 호출합니다.

thisArg

any

이 키워드가 조건자 함수에서 참조할 수 있는 개체입니다. thisArg를 생략하면 정의되지 않은 값이 이 값으로 사용됩니다.

반환

S[]

Array.filter에서 상속된

find((value: AnalyzeSentimentResult, index: number, obj: AnalyzeSentimentResult[]) => unknown, any)

function find(predicate: (value: AnalyzeSentimentResult, index: number, obj: AnalyzeSentimentResult[]) => unknown, thisArg?: any): undefined | AnalyzeSentimentResult

매개 변수

predicate

(value: AnalyzeSentimentResult, index: number, obj: AnalyzeSentimentResult[]) => unknown

thisArg

any

반환

Array.find에서 상속된

find<S>((this: void, value: AnalyzeSentimentResult, index: number, obj: AnalyzeSentimentResult[]) => value, any)

조건자가 true이고 정의되지 않은 배열의 첫 번째 요소 값을 반환합니다.

function find<S>(predicate: (this: void, value: AnalyzeSentimentResult, index: number, obj: AnalyzeSentimentResult[]) => value, thisArg?: any): undefined | S

매개 변수

predicate

(this: void, value: AnalyzeSentimentResult, index: number, obj: AnalyzeSentimentResult[]) => value

조건자가 true를 반환하는 호출을 찾을 때까지 배열의 각 요소에 대한 호출 조건자를 오름차순으로 찾습니다. 이러한 요소를 찾으면 해당 요소 값이 즉시 반환됩니다. 그렇지 않으면 정의되지 않은 반환을 찾습니다.

thisArg

any

제공된 경우 조건자의 각 호출에 대해 이 값으로 사용됩니다. 제공되지 않으면 정의되지 않은 값이 대신 사용됩니다.

반환

undefined | S

Array.find에서 상속된

findIndex((value: AnalyzeSentimentResult, index: number, obj: AnalyzeSentimentResult[]) => unknown, any)

조건자가 true인 배열에서 첫 번째 요소의 인덱스가 반환되고, 그렇지 않으면 -1.

function findIndex(predicate: (value: AnalyzeSentimentResult, index: number, obj: AnalyzeSentimentResult[]) => unknown, thisArg?: any): number

매개 변수

predicate

(value: AnalyzeSentimentResult, index: number, obj: AnalyzeSentimentResult[]) => unknown

조건자가 true를 반환하는 호출을 찾을 때까지 배열의 각 요소에 대한 호출 조건자를 오름차순으로 찾습니다. 이러한 요소가 발견되면 findIndex는 해당 요소 인덱스를 즉시 반환합니다. 그렇지 않으면 findIndex는 -1을 반환합니다.

thisArg

any

제공된 경우 조건자의 각 호출에 대해 이 값으로 사용됩니다. 제공되지 않으면 정의되지 않은 값이 대신 사용됩니다.

반환

number

Array.findIndex에서 상속된

flat<A, D>(A, D)

모든 하위 배열 요소가 지정된 깊이까지 재귀적으로 연결된 새 배열을 반환합니다.

function flat<A, D>(this: A, depth?: D): FlatArray<A, D>[]

매개 변수

this

A

depth

D

최대 재귀 깊이

반환

FlatArray<A, D>[]

array.flat에서 상속된

flatMap<U, This>((this: This, value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => U | (readonly U[]), This)

배열의 각 요소에 대해 정의된 콜백 함수를 호출합니다. 그런 다음 결과를 새 배열로 평면화합니다. 이는 맵과 동일하고 깊이가 1인 플랫이 뒤따릅니다.

function flatMap<U, This>(callback: (this: This, value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => U | (readonly U[]), thisArg?: This): U[]

매개 변수

callback

(this: This, value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => U | (readonly U[])

최대 3개의 인수를 허용하는 함수입니다. flatMap 메서드는 배열의 각 요소에 대해 콜백 함수를 한 번 호출합니다.

thisArg

This

이 키워드가 콜백 함수에서 참조할 수 있는 개체입니다. thisArg를 생략하면 정의되지 않은 값이 이 값으로 사용됩니다.

반환

U[]

Array.flatMap에서 상속된

forEach((value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => void, any)

배열의 각 요소에 대해 지정된 작업을 수행합니다.

function forEach(callbackfn: (value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => void, thisArg?: any)

매개 변수

callbackfn

(value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => void

최대 3개의 인수를 허용하는 함수입니다. forEach는 배열의 각 요소에 대해 콜백fn 함수를 한 번 호출합니다.

thisArg

any

이 키워드가 callbackfn 함수에서 참조할 수 있는 개체입니다. thisArg를 생략하면 정의되지 않은 값이 이 값으로 사용됩니다.

Array.forEach에서 상속된

includes(AnalyzeSentimentResult, number)

배열에 특정 요소가 포함되어 있는지 여부를 확인하여 true 또는 false를 적절하게 반환합니다.

function includes(searchElement: AnalyzeSentimentResult, fromIndex?: number): boolean

매개 변수

searchElement
AnalyzeSentimentResult

검색할 요소입니다.

fromIndex

number

searchElement 검색을 시작할 이 배열의 위치입니다.

반환

boolean

Array.includes에서 상속된

indexOf(AnalyzeSentimentResult, number)

배열에서 값이 처음 나타나는 인덱스 또는 없는 경우 -1 반환합니다.

function indexOf(searchElement: AnalyzeSentimentResult, fromIndex?: number): number

매개 변수

searchElement
AnalyzeSentimentResult

배열에서 찾을 값입니다.

fromIndex

number

검색을 시작할 배열 인덱스입니다. fromIndex를 생략하면 인덱스 0에서 검색이 시작됩니다.

반환

number

Array.indexOf에서 상속된

join(string)

지정된 구분 기호 문자열로 구분된 문자열에 배열의 모든 요소를 추가합니다.

function join(separator?: string): string

매개 변수

separator

string

배열의 한 요소를 결과 문자열의 다음 요소와 구분하는 데 사용되는 문자열입니다. 생략하면 배열 요소가 쉼표로 구분됩니다.

반환

string

Array.join에서 상속된

keys()

배열에서 반복 가능한 키를 반환합니다.

function keys(): IterableIterator<number>

반환

IterableIterator<number>

Array.keys에서 상속된

lastIndexOf(AnalyzeSentimentResult, number)

배열에서 마지막으로 발생한 지정된 값의 인덱스 또는 없는 경우 -1 반환합니다.

function lastIndexOf(searchElement: AnalyzeSentimentResult, fromIndex?: number): number

매개 변수

searchElement
AnalyzeSentimentResult

배열에서 찾을 값입니다.

fromIndex

number

뒤로 검색을 시작할 배열 인덱스입니다. fromIndex를 생략하면 배열의 마지막 인덱스에서 검색이 시작됩니다.

반환

number

Array.lastIndexOf에서 상속된

map<U>((value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => U, any)

배열의 각 요소에 대해 정의된 콜백 함수를 호출하고 결과를 포함하는 배열을 반환합니다.

function map<U>(callbackfn: (value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => U, thisArg?: any): U[]

매개 변수

callbackfn

(value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => U

최대 3개의 인수를 허용하는 함수입니다. map 메서드는 배열의 각 요소에 대해 콜백fn 함수를 한 번 호출합니다.

thisArg

any

이 키워드가 callbackfn 함수에서 참조할 수 있는 개체입니다. thisArg를 생략하면 정의되지 않은 값이 이 값으로 사용됩니다.

반환

U[]

Array.map에서 상속된

pop()

배열에서 마지막 요소를 제거하고 반환합니다. 배열이 비어 있으면 정의되지 않은 배열이 반환되고 배열이 수정되지 않습니다.

function pop(): undefined | AnalyzeSentimentResult

반환

Array.pop에서 상속된

push(AnalyzeSentimentResult[])

배열의 끝에 새 요소를 추가하고 배열의 새 길이를 반환합니다.

function push(items: AnalyzeSentimentResult[]): number

매개 변수

items

AnalyzeSentimentResult[]

배열에 추가할 새 요소입니다.

반환

number

Array.push에서 상속된

reduce((previousValue: AnalyzeSentimentResult, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => AnalyzeSentimentResult)

배열의 모든 요소에 대해 지정된 콜백 함수를 호출합니다. 콜백 함수의 반환 값은 누적된 결과이며 콜백 함수에 대한 다음 호출에서 인수로 제공됩니다.

function reduce(callbackfn: (previousValue: AnalyzeSentimentResult, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => AnalyzeSentimentResult): AnalyzeSentimentResult

매개 변수

callbackfn

(previousValue: AnalyzeSentimentResult, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => AnalyzeSentimentResult

최대 4개의 인수를 허용하는 함수입니다. reduce 메서드는 배열의 각 요소에 대해 콜백fn 함수를 한 번 호출합니다.

반환

array.reduce에서 상속된

reduce((previousValue: AnalyzeSentimentResult, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => AnalyzeSentimentResult, AnalyzeSentimentResult)

function reduce(callbackfn: (previousValue: AnalyzeSentimentResult, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => AnalyzeSentimentResult, initialValue: AnalyzeSentimentResult): AnalyzeSentimentResult

매개 변수

callbackfn

(previousValue: AnalyzeSentimentResult, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => AnalyzeSentimentResult

initialValue
AnalyzeSentimentResult

반환

array.reduce에서 상속된

reduce<U>((previousValue: U, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => U, U)

배열의 모든 요소에 대해 지정된 콜백 함수를 호출합니다. 콜백 함수의 반환 값은 누적된 결과이며 콜백 함수에 대한 다음 호출에서 인수로 제공됩니다.

function reduce<U>(callbackfn: (previousValue: U, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => U, initialValue: U): U

매개 변수

callbackfn

(previousValue: U, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => U

최대 4개의 인수를 허용하는 함수입니다. reduce 메서드는 배열의 각 요소에 대해 콜백fn 함수를 한 번 호출합니다.

initialValue

U

initialValue를 지정하면 누적을 시작하는 초기 값으로 사용됩니다. 콜백fn 함수에 대한 첫 번째 호출은 배열 값 대신 인수로 이 값을 제공합니다.

반환

U

array.reduce에서 상속된

reduceRight((previousValue: AnalyzeSentimentResult, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => AnalyzeSentimentResult)

배열의 모든 요소에 대해 지정된 콜백 함수를 내림차순으로 호출합니다. 콜백 함수의 반환 값은 누적된 결과이며 콜백 함수에 대한 다음 호출에서 인수로 제공됩니다.

function reduceRight(callbackfn: (previousValue: AnalyzeSentimentResult, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => AnalyzeSentimentResult): AnalyzeSentimentResult

매개 변수

callbackfn

(previousValue: AnalyzeSentimentResult, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => AnalyzeSentimentResult

최대 4개의 인수를 허용하는 함수입니다. reduceRight 메서드는 배열의 각 요소에 대해 콜백fn 함수를 한 번 호출합니다.

반환

array.reduceRight에서 상속된

reduceRight((previousValue: AnalyzeSentimentResult, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => AnalyzeSentimentResult, AnalyzeSentimentResult)

function reduceRight(callbackfn: (previousValue: AnalyzeSentimentResult, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => AnalyzeSentimentResult, initialValue: AnalyzeSentimentResult): AnalyzeSentimentResult

매개 변수

callbackfn

(previousValue: AnalyzeSentimentResult, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => AnalyzeSentimentResult

initialValue
AnalyzeSentimentResult

반환

array.reduceRight에서 상속된

reduceRight<U>((previousValue: U, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => U, U)

배열의 모든 요소에 대해 지정된 콜백 함수를 내림차순으로 호출합니다. 콜백 함수의 반환 값은 누적된 결과이며 콜백 함수에 대한 다음 호출에서 인수로 제공됩니다.

function reduceRight<U>(callbackfn: (previousValue: U, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => U, initialValue: U): U

매개 변수

callbackfn

(previousValue: U, currentValue: AnalyzeSentimentResult, currentIndex: number, array: AnalyzeSentimentResult[]) => U

최대 4개의 인수를 허용하는 함수입니다. reduceRight 메서드는 배열의 각 요소에 대해 콜백fn 함수를 한 번 호출합니다.

initialValue

U

initialValue를 지정하면 누적을 시작하는 초기 값으로 사용됩니다. 콜백fn 함수에 대한 첫 번째 호출은 배열 값 대신 인수로 이 값을 제공합니다.

반환

U

array.reduceRight에서 상속된

reverse()

배열의 요소를 현재 위치에 역방향으로 바뀝니다. 이 메서드는 배열을 변경하고 동일한 배열에 대한 참조를 반환합니다.

function reverse(): AnalyzeSentimentResult[]

반환

Array.reverse에서 상속된

shift()

배열에서 첫 번째 요소를 제거하고 반환합니다. 배열이 비어 있으면 정의되지 않은 배열이 반환되고 배열이 수정되지 않습니다.

function shift(): undefined | AnalyzeSentimentResult

반환

Array.shift에서 상속된

slice(number, number)

배열 섹션의 복사본을 반환합니다. 시작과 끝 모두에서 음수 인덱스로 배열의 끝에서 오프셋을 나타낼 수 있습니다. 예를 들어 -2 배열의 두 번째에서 마지막 요소를 참조합니다.

function slice(start?: number, end?: number): AnalyzeSentimentResult[]

매개 변수

start

number

배열의 지정된 부분의 시작 인덱스입니다. 시작이 정의되지 않은 경우 조각은 인덱스 0에서 시작됩니다.

end

number

배열의 지정된 부분의 끝 인덱스입니다. 인덱스 'end'의 요소는 제외됩니다. 끝이 정의되지 않은 경우 조각은 배열의 끝으로 확장됩니다.

반환

Array.slice에서 상속된

some((value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => unknown, any)

지정된 콜백 함수가 배열의 요소에 대해 true를 반환하는지 여부를 결정합니다.

function some(predicate: (value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => unknown, thisArg?: any): boolean

매개 변수

predicate

(value: AnalyzeSentimentResult, index: number, array: AnalyzeSentimentResult[]) => unknown

최대 3개의 인수를 허용하는 함수입니다. 일부 메서드는 조건자가 true 부울 값으로 강제 변환 가능한 값을 반환하거나 배열의 끝까지 반환할 때까지 배열의 각 요소에 대한 조건자 함수를 호출합니다.

thisArg

any

이 키워드가 조건자 함수에서 참조할 수 있는 개체입니다. thisArg를 생략하면 정의되지 않은 값이 이 값으로 사용됩니다.

반환

boolean

Array.some에서 상속된

sort((a: AnalyzeSentimentResult, b: AnalyzeSentimentResult) => number)

배열을 제자리에 정렬합니다. 이 메서드는 배열을 변경하고 동일한 배열에 대한 참조를 반환합니다.

function sort(compareFn?: (a: AnalyzeSentimentResult, b: AnalyzeSentimentResult) => number): AnalyzeSentimentResultArray

매개 변수

compareFn

(a: AnalyzeSentimentResult, b: AnalyzeSentimentResult) => number

요소의 순서를 결정하는 데 사용되는 함수입니다. 첫 번째 인수가 두 번째 인수보다 작으면 음수 값을 반환하고, 0이 같으면 0이고, 그렇지 않으면 양수 값을 반환해야 합니다. 생략하면 요소가 ASCII 문자 순서로 오름차순으로 정렬됩니다.

[11,2,22,1].sort((a, b) => a - b)

반환

Array.sort에서 상속된

splice(number, number)

배열에서 요소를 제거하고 필요한 경우 해당 위치에 새 요소를 삽입하고 삭제된 요소를 반환합니다.

function splice(start: number, deleteCount?: number): AnalyzeSentimentResult[]

매개 변수

start

number

요소 제거를 시작할 배열의 0부터 시작하는 위치입니다.

deleteCount

number

제거할 요소의 수입니다.

반환

삭제된 요소를 포함하는 배열입니다.

Array.splice에서 상속된

splice(number, number, AnalyzeSentimentResult[])

배열에서 요소를 제거하고 필요한 경우 해당 위치에 새 요소를 삽입하고 삭제된 요소를 반환합니다.

function splice(start: number, deleteCount: number, items: AnalyzeSentimentResult[]): AnalyzeSentimentResult[]

매개 변수

start

number

요소 제거를 시작할 배열의 0부터 시작하는 위치입니다.

deleteCount

number

제거할 요소의 수입니다.

items

AnalyzeSentimentResult[]

삭제된 요소 대신 배열에 삽입할 요소입니다.

반환

삭제된 요소를 포함하는 배열입니다.

Array.splice에서 상속된

toLocaleString()

배열의 문자열 표현을 반환합니다. 요소는 toLocaleString 메서드를 사용하여 문자열로 변환됩니다.

function toLocaleString(): string

반환

string

Array.toLocaleString에서 상속된

toString()

배열의 문자열 표현을 반환합니다.

function toString(): string

반환

string

Array.toString에서 상속된

unshift(AnalyzeSentimentResult[])

배열의 시작 부분에 새 요소를 삽입하고 배열의 새 길이를 반환합니다.

function unshift(items: AnalyzeSentimentResult[]): number

매개 변수

items

AnalyzeSentimentResult[]

배열의 시작 부분에 삽입할 요소입니다.

반환

number

Array.unshift에서 상속된

values()

배열에서 반복 가능한 값을 반환합니다.

function values(): IterableIterator<AnalyzeSentimentResult>

반환

IterableIterator<AnalyzeSentimentResult>

Array.values에서 상속된

[iterator]()

반복기

function [iterator](): IterableIterator<AnalyzeSentimentResult>

반환

IterableIterator<AnalyzeSentimentResult>

Array.__@iterator@80 상속된

[unscopables]()

'with' 문에 사용될 때 속성 값이 'true'인 개체를 반환합니다.

function [unscopables](): { copyWithin: boolean, entries: boolean, fill: boolean, find: boolean, findIndex: boolean, keys: boolean, values: boolean }

반환

{ copyWithin: boolean, entries: boolean, fill: boolean, find: boolean, findIndex: boolean, keys: boolean, values: boolean }

Array.__@unscopables@82 상속된