Kotlin - List Ops WIP

This commit is contained in:
Unknown 2017-09-05 16:01:33 -04:00
parent 88fc9c2c3b
commit 66e93e01db

View 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>()
}