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
/
IAppendOnlyViewableConcurrentSet
IAppend
Only
Viewable
Concurrent
Set
interface
IAppendOnlyViewableConcurrentSet
<
T
>
:
IViewableConcurrentSet
<
T
>
Inheritors
IMutableViewableConcurrentSet
Members
Members & Extensions
Properties
size
Link copied to clipboard
abstract
val
size
:
Int
Functions
add
Link copied to clipboard
abstract
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
abstract
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
abstract
operator
fun
iterator
(
)
:
Iterator
<
T
>
view
Link copied to clipboard
abstract
fun
view
(
lifetime
:
Lifetime
,
action
:
(
Lifetime
,
T
)
->
Unit
)