toggle menu
kotlin-jupyter-kernel
0.12.0-335
jvm
switch theme
search in API
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
?