kotlin-jupyter-kernel
Toggle table of contents
0.13.0-481-1
jvm
Platform filter
jvm
Switch theme
Search in API
kotlin-jupyter-kernel
getting-started
/
org.jetbrains.kotlinx.jupyter.example
/
Person
Person
data
class
Person
(
val
name
:
String
,
val
lastName
:
String
,
val
age
:
Int
,
val
cars
:
MutableList
<
Car
>
=
mutableListOf()
)
Members
Constructors
Person
Link copied to clipboard
constructor
(
name
:
String
,
lastName
:
String
,
age
:
Int
,
cars
:
MutableList
<
Car
>
=
mutableListOf()
)
Properties
age
Link copied to clipboard
val
age
:
Int
cars
Link copied to clipboard
val
cars
:
MutableList
<
Car
>
last
Name
Link copied to clipboard
val
lastName
:
String
name
Link copied to clipboard
val
name
:
String