8 lines
146 B
Kotlin
8 lines
146 B
Kotlin
|
package jp.juggler.subwaytooter.table
|
||
|
|
||
|
// class TableUtils{ }
|
||
|
|
||
|
// boolean to integer
|
||
|
fun b2i(v : Boolean ) : Int {
|
||
|
return if(v) 1 else 0
|
||
|
}
|