Kotlin - List Ops WIP
This commit is contained in:
parent
88fc9c2c3b
commit
66e93e01db
1 changed files with 27 additions and 0 deletions
27
kotlin/list-ops/src/main/kotlin/ListExt.kt
Normal file
27
kotlin/list-ops/src/main/kotlin/ListExt.kt
Normal file
|
@ -0,0 +1,27 @@
|
|||
fun <T> List<T>.customAppend(inpList: List<T>): List<T>{
|
||||
return emptyList<T>()
|
||||
}
|
||||
|
||||
fun <T> List<List<T>>.customConcat(): List<T>{
|
||||
return emptyList<T>()
|
||||
}
|
||||
|
||||
fun <T> List<T>.customFilter(inpFunc: (T) -> Boolean): List<T>{
|
||||
return emptyList<T>()
|
||||
}
|
||||
|
||||
fun <T> List<T>.customSize() : Int{
|
||||
return 0
|
||||
}
|
||||
|
||||
fun <T> List<T>.customReverse(): List<T>{
|
||||
return emptyList<T>()
|
||||
}
|
||||
|
||||
fun <T> List<T>.customFoldLeft(acc: T, inpFunc: (T, T) -> T): List<T>{
|
||||
return emptyList<T>()
|
||||
}
|
||||
|
||||
fun <T> List<T>.customFoldRight(acc: T, inpFunc: (T, T) -> T): List<T>{
|
||||
return emptyList<T>()
|
||||
}
|
Loading…
Add table
Reference in a new issue