Skip to content

Commit

Permalink
ktlintFormat
Browse files Browse the repository at this point in the history
  • Loading branch information
lauzadis committed Jul 11, 2024
1 parent 840ab18 commit 49f07fa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
*/
package aws.smithy.kotlin.runtime.content

public actual class BigDecimal actual constructor(value: String) : Number(), Comparable<BigDecimal> {
public actual class BigDecimal actual constructor(value: String) :
Number(),
Comparable<BigDecimal> {
public actual fun toPlainString(): String {
TODO("Not yet implemented")
}
Expand Down Expand Up @@ -33,15 +35,12 @@ public actual class BigDecimal actual constructor(value: String) : Number(), Com
TODO("Not yet implemented")
}


public actual val mantissa: BigInteger
get() = TODO("Not yet implemented")


public actual val exponent: Int
get() = TODO("Not yet implemented")


public actual constructor(mantissa: BigInteger, exponent: Int) : this("TODO(Not yet implemented)") {
TODO("Not yet implemented")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
*/
package aws.smithy.kotlin.runtime.content

public actual class BigInteger actual constructor(value: String) : Number(), Comparable<BigInteger> {
public actual class BigInteger actual constructor(value: String) :
Number(),
Comparable<BigInteger> {
public actual constructor(bytes: ByteArray) : this("Not yet implemented")

actual override fun toByte(): Byte {
Expand Down

0 comments on commit 49f07fa

Please sign in to comment.