mirror of
https://github.com/JustinZeus/Wholphin.git
synced 2026-07-09 16:11:20 +02:00
Dependency updates & removing unused code (#70)
Just bumping dependencies and deleting some unused code. No user facing changes
This commit is contained in:
parent
1c1e64a5b9
commit
89b9364807
30 changed files with 367 additions and 844 deletions
|
|
@ -1,11 +0,0 @@
|
|||
package com.github.damontecres.wholphin.util
|
||||
|
||||
class LazyList<Source, Transform>(
|
||||
private val source: List<Source>,
|
||||
private val transform: (Source) -> Transform,
|
||||
) : AbstractList<Transform>() {
|
||||
override fun get(index: Int): Transform = transform.invoke(source[index])
|
||||
|
||||
override val size: Int
|
||||
get() = source.size
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue