Yongshun Ye
Yongshun Ye
Agda supports special characters including Unicode characters in names except for reserved ones, and sometimes it's a convention to write names with such characters. Currently autocompletion and case split don't...
Should it be pointed out that the defined fixpoint in Untyped is well-known as the Y combinator, discovered by Haskell Curry? I learned about this the first time as the...
Currently, in Adequacy, there are `𝕍-sub`s and `𝔼-sub`s in the text and `sub-𝕍`s and `sub-𝔼`s in the code, which are inconsistent.
The library I am benchmarking uses Kotlin's `ExperimentalUnsignedTypes`. I have already added ```kotlin @OptIn(ExperimentalUnsignedTypes::class) ``` to the benchmark class and ```kotlin tasks.withType().configureEach { kotlinOptions.freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn" } ``` to `build.gradle.kts`...
Motivation: Hi, Vert.x Maintainers. We have been developing our projects in Kotlin with the Vert.x toolkit as the core of the backend. It's been quite smooth and this project provides...
Is this an official Kotlin library supported by JetBrains? If not, I guess it is not appropriate to use the "kotlinx" prefix in the name. It causes ambiguity.
"HitInt.agda": ```agda {-# OPTIONS --cubical --safe #-} module HitInt where open import Cubical.Data.Nat open import Cubical.Core.Everything open import Cubical.Foundations.Prelude using (subst) data ℤ : Set where pos : (n :...
**What is your use-case and why do you need this feature?** The Kotlin compiler can infer some type arguments of a subtype from those of the parent abstract/sealed types. Currently,...