Coverage Summary for Class: StringFunctions (com.kotlinorm.functions.bundled.exts)
Class |
Class, %
|
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
StringFunctions |
0%
(0/1)
|
0%
(0/14)
|
|
0%
(0/14)
|
0%
(0/14)
|
package com.kotlinorm.functions.bundled.exts
import com.kotlinorm.functions.FunctionHandler
@Suppress("unused")
object StringFunctions {
@Suppress("unused", "UnusedReceiverParameter", "UNUSED_PARAMETER")
fun FunctionHandler.length(x: String?): Any? = null
@Suppress("unused", "UnusedReceiverParameter", "UNUSED_PARAMETER")
fun FunctionHandler.upper(x: String?): Any? = null
@Suppress("unused", "UnusedReceiverParameter", "UNUSED_PARAMETER")
fun FunctionHandler.lower(x: String?): Any? = null
@Suppress("unused", "UnusedReceiverParameter", "UNUSED_PARAMETER")
fun FunctionHandler.substr(x: String?, y: Int?, z: Int?): Any? = null
@Suppress("unused", "UnusedReceiverParameter", "UNUSED_PARAMETER")
fun FunctionHandler.replace(x: String?, y: String?, z: String?): Any? = null
@Suppress("unused", "UnusedReceiverParameter", "UNUSED_PARAMETER")
fun FunctionHandler.left(x: String?, y: Int?): Any? = null
@Suppress("unused", "UnusedReceiverParameter", "UNUSED_PARAMETER")
fun FunctionHandler.right(x: String?, y: Int?): Any? = null
@Suppress("unused", "UnusedReceiverParameter", "UNUSED_PARAMETER")
fun FunctionHandler.repeat(x: String?, y: Int?): Any? = null
@Suppress("unused", "UnusedReceiverParameter", "UNUSED_PARAMETER")
fun FunctionHandler.reverse(x: String?): Any? = null
@Suppress("unused", "UnusedReceiverParameter", "UNUSED_PARAMETER")
fun FunctionHandler.trim(x: String?): Any? = null
@Suppress("unused", "UnusedReceiverParameter", "UNUSED_PARAMETER")
fun FunctionHandler.ltrim(x: String?): Any? = null
@Suppress("unused", "UnusedReceiverParameter", "UNUSED_PARAMETER")
fun FunctionHandler.rtrim(x: String?): Any? = null
@Suppress("unused", "UnusedReceiverParameter", "UNUSED_PARAMETER")
fun FunctionHandler.concat(vararg x: String?): String? = null
@Suppress("unused", "UnusedReceiverParameter", "UNUSED_PARAMETER")
fun FunctionHandler.join(x: String?, vararg y: String?): String? = null
}