Movatterモバイル変換


[0]ホーム

URL:


Scala 3
3.7.4
LearnInstallPlaygroundFind A LibraryCommunityBlog
Scala 3
LearnInstallPlaygroundFind A LibraryCommunityBlog
DocsAPI
Generated with
Copyright (c) 2002-2025, LAMP/EPFL
Copyright (c) 2002-2025, LAMP/EPFL
Scala 3/scala/scala.collection/ArrayOps/WithFilter

WithFilter

scala.collection.ArrayOps.WithFilter
classWithFilter[A](p:A=>Boolean,xs:Array[A])

A lazy filtered array. No filtering is applied until one offoreach,map orflatMap is called.

Attributes

Source
ArrayOps.scala
Graph
Supertypes
classObject
traitMatchable
classAny

Members list

Value members

Concrete methods

defflatMap[B :ClassTag](f:A=>IterableOnce[B]):Array[B]

Builds a new array by applying a function to all elements of this array and using the elements of the resulting collections.

Builds a new array by applying a function to all elements of this array and using the elements of the resulting collections.

Type parameters

B

the element type of the returned array.

Value parameters

f

the function to apply to each element.

Attributes

Returns

a new array resulting from applying the given collection-valued functionf to each element of this array and concatenating the results.

Source
ArrayOps.scala
defflatMap[BS,B](f:A=>BS)(implicitasIterable:BS=>Iterable[B],m:ClassTag[B]):Array[B]

Attributes

Source
ArrayOps.scala
defforeach[U](f:A=>U):Unit

Applyf to each element for its side effects.

Applyf to each element for its side effects. Note: [U] parameter needed to help scalac's type inference.

Attributes

Source
ArrayOps.scala
defmap[B :ClassTag](f:A=>B):Array[B]

Builds a new array by applying a function to all elements of this array.

Builds a new array by applying a function to all elements of this array.

Type parameters

B

the element type of the returned array.

Value parameters

f

the function to apply to each element.

Attributes

Returns

a new array resulting from applying the given functionf to each element of this array and collecting the results.

Source
ArrayOps.scala

Creates a new non-strict filter which combines this filter with the given predicate.

Creates a new non-strict filter which combines this filter with the given predicate.

Attributes

Source
ArrayOps.scala
In this article
Generated with
Copyright (c) 2002-2025, LAMP/EPFL
Copyright (c) 2002-2025, LAMP/EPFL

[8]ページ先頭

©2009-2025 Movatter.jp