kotlin-jupyter-kernel
Toggle table of contents
0.13.0-481-1
jvm
Platform filter
jvm
Switch theme
Search in API
kotlin-jupyter-kernel
api
/
org.jetbrains.kotlinx.jupyter.api
/
VariableDeclaration
Variable
Declaration
data
class
VariableDeclaration
(
val
name
:
VariableName
,
val
value
:
Any
?
,
val
type
:
KType
,
val
isMutable
:
Boolean
=
false
)
Members
Constructors
Variable
Declaration
Link copied to clipboard
constructor
(
name
:
VariableName
,
value
:
Any
?
,
isMutable
:
Boolean
=
false
)
constructor
(
name
:
VariableName
,
value
:
Any
?
,
type
:
KType
,
isMutable
:
Boolean
=
false
)
Properties
is
Mutable
Link copied to clipboard
val
isMutable
:
Boolean
=
false
name
Link copied to clipboard
val
name
:
VariableName
type
Link copied to clipboard
val
type
:
KType
value
Link copied to clipboard
val
value
:
Any
?