Skip to content

Commit

Permalink
chore: parens
Browse files Browse the repository at this point in the history
  • Loading branch information
lbressler13 committed Jan 23, 2024
1 parent cd1d04f commit 64c7cd2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions signatures/v1.0.0/updates.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ ADD abstract class IrrationalNumber<T : IrrationalNumber<T>>: Comparable<T>, Num
**Log**
```kotlin
DEL class Log: Comparable<Log>, Irrational
ADD class Log: IrrationalNumber<Log>
ADD class Log: IrrationalNumber<Log>()

DEL Log(argument: BigInteger, isDivided: Boolean)
DEL Log(argument: BigInteger, base: Int, isDivided: Boolean)
Expand Down Expand Up @@ -107,7 +107,7 @@ ADD fun toPlainString(): String
**Sqrt**
```kotlin
DEL class Sqrt: Comparable<Sqrt>, Irrational
ADD class Sqrt: IrrationalNumber<Sqrt>
ADD class Sqrt: IrrationalNumber<Sqrt>()

ADD fun toPlainString(): String
```
Expand Down
4 changes: 2 additions & 2 deletions signatures/v1.0.0/v1.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,6 @@ abstract class IrrationalNumber<T : IrrationalNumber<T>> : Comparable<T>, Number
val isInverted: Boolean
val type: String

val isDivided: Boolean // DEPRECATED

fun getRationalValue(): ExactFraction?
fun getValue(): BigDecimal
fun inverse(): T
Expand All @@ -180,6 +178,8 @@ operator fun div(other: IrrationalNumber<*>): Term
operator fun times(other: ExactFraction): Term
operator fun times(other: IrrationalNumber<*>): Term

val isDivided: Boolean // DEPRECATED

fun swapDivided(): T // DEPRECATED
```

Expand Down

0 comments on commit 64c7cd2

Please sign in to comment.