data oriented programming
Data-oriented design - Wikipedia
ClojureClojure.icon
Data is immutable.
Data is explicit.
talk-transcripts/ValueOfValues.md at master · matthiasn/talk-transcripts
talk-transcripts/ValueOfValuesLong.md at master · matthiasn/talk-transcripts
Data is long live than the program.
value semantics
Swift が値型中心の言語になれた理由とその使い方 | Heart of Swift
copy-on-write
inout 引數
code:swift
func f(v: inout V) {
v.x += 1
}
var v: V = …
f(&v)
Introduction to Immer | Immer だ
code:javascript
v = produce(v, v => {
v.x += 1;
});
RustRust.icon
mutating func
inout な self
code:swift
extention V {
mutationg func inc() {
self.x += 1
}
}
var v: V = …
v.inc()
computed property は inout