rd-core
Toggle table of contents
2025.2.2-beta1
jvm
Platform filter
jvm
Switch theme
Search in API
rd-core
rd-core
/
com.jetbrains.rd.util.reactive
/
ConcurrentViewableSet
Concurrent
Viewable
Set
class
ConcurrentViewableSet
<
T
>
:
IMutableViewableConcurrentSet
<
T
>
Members
Members & Extensions
Constructors
Concurrent
Viewable
Set
Link copied to clipboard
constructor
(
)
Properties
size
Link copied to clipboard
@
Volatile
open
override
var
size
:
Int
Functions
add
Link copied to clipboard
open
override
fun
add
(
value
:
T
)
:
Boolean
add
All
Link copied to clipboard
open
fun
addAll
(
elements
:
Iterable
<
T
>
)
:
Boolean
Adds all the elements of the specified collection to this collection.
contains
Link copied to clipboard
open
override
fun
contains
(
value
:
T
)
:
Boolean
fold
Link copied to clipboard
fun
<
TSource
,
TResult
:
Any
>
Iterable
<
IPropertyView
<
TSource
>
>
.
fold
(
lifetime
:
Lifetime
,
initial
:
TResult
,
func
:
(
TResult
,
TSource
)
->
TResult
)
:
OptProperty
<
TResult
>
fold
Opt
Link copied to clipboard
fun
<
TSource
:
Any
,
TResult
:
Any
>
Iterable
<
IOptPropertyView
<
TSource
>
>
.
foldOpt
(
lifetime
:
Lifetime
,
initial
:
TResult
,
func
:
(
TResult
,
TSource
)
->
TResult
)
:
OptProperty
<
TResult
>
iterator
Link copied to clipboard
open
operator override
fun
iterator
(
)
:
Iterator
<
T
>
remove
Link copied to clipboard
open
override
fun
remove
(
value
:
T
)
:
Boolean
view
Link copied to clipboard
open
override
fun
view
(
lifetime
:
Lifetime
,
action
:
(
Lifetime
,
T
)
->
Unit
)