Movatterモバイル変換


[0]ホーム

URL:


Skip to contents

Concatenate zero or more Arrays

Source:R/array.R
concat_arrays.Rd

Concatenates zero or moreArray objects into a singlearray. This operation will make a copy of its input; if you needthe behavior of a single Array but don't need asingle object, useChunkedArray.

Usage

concat_arrays(..., type=NULL)# S3 method for class 'Array'c(...)

Arguments

...

zero or moreArray objects to concatenate

type

An optionaltype describing the desiredtype for the final Array.

Value

A singleArray

Examples

concat_arrays(Array$create(1:3),Array$create(4:5))#> Array#> <int32>#> [#>   1,#>   2,#>   3,#>   4,#>   5#> ]

[8]ページ先頭

©2009-2025 Movatter.jp