Loïc Lamarque

Results 43 comments of Loïc Lamarque

I've noticed the same problem on [arrow.core.ior](https://arrow-kt.io/docs/apidocs/arrow-core/arrow.core/-ior/)!

Hello! I'm getting the same error on `v3.12.12`. I tried to rollback to `v3.8.9`, but it's still the same. ![image](https://user-images.githubusercontent.com/43500570/113268378-988e0400-92d7-11eb-827a-0850eca2fa75.png)

> @LVMVRQUXL Hey. My problem was with current directory option,. Just remove that and use something like that. If you dont use that option, I can't help you 😄 >...

Hello, I have the same issue on Google Chrome. My computer runs on Windows 11.

The `PositiveInteger.Companion.random()` function should use the widest range available, like the `Long` type's range, for producing a random value.

In the future, we could make instances of this type comparable with themselves and the integer types from the Kotlin standard library. ```kotlin interface PositiveInt : Comparable { operator fun...

In the future, we could add support for basic arithmetic operations `+`, `-`, `*`, `/` and `%`.

In the future, we could provide additional conversions for the `PositiveInt`. ```kotlin interface PositiveInt { fun toByte(): Byte fun toShort(): Short fun toLong(): Long fun toFloat(): Float fun toDouble(): Double...

In the future, we could introduce types representing the digits `1`, `2`, `3`, `4`, `5`, `6`, `7`, `8` and `9`. The digit `0` is already represented by the `Zero` **experimental**...

This type will be implemented internally for the `PositiveInteger` type (see issue #661).