-
Launch Week 13 Nakuru, Kenya.
Date: 6/12/2024
https://bit.ly/3Cx3WUV
-
[@lucaswerkmeister] The following [caseTypes](https://github.com/ceylon/ceylon-spec/blob/d467d079d96b313c17b37c639b0ded58df662181/Ceylon.g#L770)
``` ceylon
class T of a|A|X|X.Y|A.B|B|B.B|x|y|Z|z|Y { …
-
-
Feature request :)
Multiple hierarchies per Dimension.
I may be able to do some work on this soon.
-
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.
## Config Migration Needed
- […
-
IsNever by hiroya iizuka @hiroyaiizuka
Implement a type IsNever, which takes input type `T`.
If the type of resolves to `never`, return `true`, otherwise `false`.
For exam…
-
Includes by null @kynefuk
在类型系统里实现 JavaScript 的 `Array.includes` 方法,这个类型接受两个参数,返回的类型要么是 `true` 要么是 `false`。
例如:
```ts
type isPillarMen = Includes // expected to be `…
-
Merge by ZYSzys @ZYSzys
将两个类型合并成一个类型,第二个类型的键会覆盖第一个类型的键。
例如
```ts
type foo = {
name: string;
age: string;
}
type coo = {
age: number;
sex: string
}
…
-
ReplaceAll by Anthony Fu @antfu
实现 `ReplaceAll` 将一个字符串 `S` 中的所有子字符串 `From` 替换为 `To`。
例如
```ts
type replaced = ReplaceAll // 期望是 'types'
```
-