High Definition Standard Definition Theater
Video id : B9YjzbfXIGA
ImmersiveAmbientModecolor: #c7b8b5 (color 2)
Video Format : (720p) openh264 ( https://github.com/cisco/openh264) mp4a.40.2 | 44100Hz
Audio Format: 140 ( High )
PokeEncryptID: f0a0e033ff37764c6a56556b6464efd6d02c775330d4dd2206158af743a9abc07afd8f7d7a6bb5e27075bb63236da2dd
Proxy : cal1.iv.ggtyler.dev - refresh the page to change the proxy location
Date : 1732327258708 - unknown on Apple WebKit
Mystery text : QjlZanpiZlhJR0EgaSAgbG92ICB1IGNhbDEuaXYuZ2d0eWxlci5kZXY=
143 : true
6,695 Views • Oct 5, 2024 • Click to toggle off description
Metadata And Engagement

Views : 6,695
Genre: Science & Technology
Uploaded At Oct 5, 2024 ^^


warning: returnyoutubedislikes may not be accurate, this is just an estiment ehe :3
Rating : 4.949 (6/463 LTDR)

98.72% of the users lieked the video!!
1.28% of the users dislieked the video!!
User score: 98.08- Masterpiece Video

RYD date created : 2024-10-17T15:25:05.401275Z
See in json
Tags
Connections
Nyo connections found on the description ;_; report an issue lol

14 Comments

Top Comments of this video!! :3

1 month ago

We have a better option:
List(100) { Person(“Person $it”) }

65 |

@Arcao

1 month ago

List(1000) { ... } or buildList { ... }

4 |

@vukkumsp

1 month ago

Use stream with range and collect into a list

|

@vitalijuskolinko9011

1 month ago

Another way is to use generateSequence:

data class Person(val id: Int, val name: String)

fun main() {
val people = generateSequence(1) { it + 1 }
.take(100)
.map { Person(it, "Person $it") }
.toList()

// Print the created Person objects
people.forEach { println(it) }
}

1 |

@albertbo2178

1 month ago

Maybe, but for me is less readible

3 |

Go To Top