Package-level declarations
Properties
Functions
Link copied to clipboard
Link copied to clipboard
Description: 校验是否为合法文件名
Link copied to clipboard
operator fun <A, B, C, D, E, F, G, H> Tuple7<A, B, C, D, E, F, G>.plus(h: H): Tuple8<A, B, C, D, E, F, G, H>
operator fun <A, B, C, D, E, F, G, H, I> Tuple8<A, B, C, D, E, F, G, H>.plus(i: I): Tuple9<A, B, C, D, E, F, G, H, I>
Link copied to clipboard
字符串安全转换到双精度类型,转换失败返回0
Link copied to clipboard
字符串安全转换到整型,转换失败返回0
Link copied to clipboard
字符串安全转换到长整型,转换失败返回0
Link copied to clipboard
字符串安全转换到短整型类型,转换失败返回0
Link copied to clipboard
infix fun <A, B, C, D, E, F, G, H> Tuple7<A, B, C, D, E, F, G>.to(h: H): Tuple8<A, B, C, D, E, F, G, H>
infix fun <A, B, C, D, E, F, G, H, I> Tuple8<A, B, C, D, E, F, G, H>.to(i: I): Tuple9<A, B, C, D, E, F, G, H, I>
infix fun <A, B, C, D, E, F, G, H, I, J> Tuple9<A, B, C, D, E, F, G, H, I>.to(j: J): Tuple10<A, B, C, D, E, F, G, H, I, J>
元组扩展,可以使用 a to b to c
这样的连续中缀函数创建更多元素的元组
Link copied to clipboard
Link copied to clipboard
fun <A, B, C, D, E> tuple(first: A, second: B, third: C, fourth: D, fifth: E): Tuple5<A, B, C, D, E>
fun <A, B, C, D, E, F> tuple(first: A, second: B, third: C, fourth: D, fifth: E, sixth: F): Tuple6<A, B, C, D, E, F>
fun <A, B, C, D, E, F, G> tuple(first: A, second: B, third: C, fourth: D, fifth: E, sixth: F, seventh: G): Tuple7<A, B, C, D, E, F, G>
fun <A, B, C, D, E, F, G, H> tuple(first: A, second: B, third: C, fourth: D, fifth: E, sixth: F, seventh: G, eighth: H): Tuple8<A, B, C, D, E, F, G, H>