-
↓これでいけると思ったんだけど・・・
```swift
extension Array: ReactInterface.Element where Self.Element: ReactInterface.Element {
}
```
だめだった
ヘテロな配列を作った時に、要素の型が `Any` になって、`Element` に準拠しない
-
Hi,
I've encountered some issues from building docker container from official image.
If I directly use STA v1.1 after `docker-compose up -d` I will received error message as below:
14:44:54…
-
Following query from one of the presto-tests module fails against c++ worker:
```
MaterializedResult actual = computeActual("SELECT cardinality(merge(empty_approx_set())) FROM orders");
Mat…
-
Reactは再描画してコンポーネントのマッチをした時に、
propsが変化していなければrenderの呼び出しをカットする機能がある。
これはパフォーマンスのために必要なので再現したい。
ReactはJSXを利用することで、
ノードツリーとして構築しているのはコンポーネントそのものではなく、
コンポーネントの型とpropsを束ねたファクトリとしている。
そのため、propsを評…
-
Reactではhook関数を呼び出して登録するが、これは命令型プログラミング言語としてはかなり異常なことをやっている。
コンポーネントをrenderする時に頭からhookの呼び出しを数えて番号をつけて、
それによって利用するhookのidentityを定義している。
そのため、動的にhook呼び出しがずれるようなことを禁じている。
これは別に真似する実装は可能だがあり得ないと思っている…
-
作れそうだったら作ってみたいです。以下のようなイメージですが、はたして実現可能なのか..?
例: グラフィック用データの定義
```swift
struct Transform: Bundle {
@component var position: Graphic.Position
@component var zPosition: Graphic.ZPositio…
rrbox updated
4 months ago
-
### Description
I am building a small [ProseMirror](https://prosemirror.net)-like library in Swift. I decide to make heavy usage of variadic types, result builders, and opaque result types to make te…
-
```swift
protocol BarProtocol {}
struct Foo {
var bar: (repeat each Bar)
init(bar: (repeat each Bar)) {
self.bar = bar
}
init(@FooBuilder builder: () -> Self) {
…
-
### Description
When building a snippet that contains variadic generics with `swiftc -enable-experimental-feature Embedded -wmo repro.swift` with latest development snapshot of the `main` branch of…
-
Big set of changes.
What are we doing?
Creating a set of customizations to be applied during the lifecycle of
creating, executing, and validating a DAG in Hamilton. This is meant to:
1. Repl…