-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkons.go
53 lines (44 loc) · 1.13 KB
/
kons.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package main
import "fmt"
type listType func(selector selectorType) interface{}
// lisp car
func kar(x listType) interface{} {
return x(func(a func(listType), b interface{}, c listType) interface{} {
return b
})
}
// lisp cdr
func kdr(x listType) interface{} {
return x(func(a func(listType), b interface{}, c listType) interface{} {
return c
})
}
type selectorType func(func(listType), interface{}, listType) interface{}
func bons(kar interface{}) func(selectorType) interface{} {
var kdr listType
return func(selector selectorType) interface{} {
return selector(func(x listType) {
kdr = x
}, kar, kdr)
}
}
func setKdr(c func(selectorType) interface{}, x listType) {
changer := c(func(f func(listType), i interface{}, l listType) interface{} {
return f
}).(func(listType)) // 通过 selector 获取 bons 中用来更改 kdr 的函数
changer(x) // 更改闭包中的值
}
// lisp cons
func kons(kar interface{}, kdr listType) listType {
var a = bons(kar)
setKdr(a, kdr)
return a
}
func main() {
a := kons(1, nil)
b := kons(2, a)
fmt.Println(kar(a))
fmt.Println(kdr(a))
fmt.Println(kar(b))
fmt.Println(kdr(b))
}