From 66e93e01db5e68421e6abfcf4f949eec704d5967 Mon Sep 17 00:00:00 2001 From: Unknown Date: Tue, 5 Sep 2017 16:01:33 -0400 Subject: [PATCH] Kotlin - List Ops WIP --- kotlin/list-ops/src/main/kotlin/ListExt.kt | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 kotlin/list-ops/src/main/kotlin/ListExt.kt diff --git a/kotlin/list-ops/src/main/kotlin/ListExt.kt b/kotlin/list-ops/src/main/kotlin/ListExt.kt new file mode 100644 index 0000000..7fb2615 --- /dev/null +++ b/kotlin/list-ops/src/main/kotlin/ListExt.kt @@ -0,0 +1,27 @@ +fun List.customAppend(inpList: List): List{ + return emptyList() +} + +fun List>.customConcat(): List{ + return emptyList() +} + +fun List.customFilter(inpFunc: (T) -> Boolean): List{ + return emptyList() +} + +fun List.customSize() : Int{ + return 0 +} + +fun List.customReverse(): List{ + return emptyList() +} + +fun List.customFoldLeft(acc: T, inpFunc: (T, T) -> T): List{ + return emptyList() +} + +fun List.customFoldRight(acc: T, inpFunc: (T, T) -> T): List{ + return emptyList() +} \ No newline at end of file