From 2b48729fd2a677ca081cec05c057d86a44664abd Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Mon, 12 Aug 2019 23:28:48 -0700 Subject: new variant: maybe-get returns null on failure --- apps/assort | Bin 34424 -> 34812 bytes apps/crenshaw2-1 | Bin 27418 -> 27806 bytes apps/crenshaw2-1b | Bin 27977 -> 28365 bytes apps/desugar | Bin 33687 -> 34075 bytes apps/dquotes | Bin 40980 -> 41368 bytes apps/factorial | Bin 26334 -> 26722 bytes apps/handle | Bin 27188 -> 27576 bytes apps/hex | Bin 36979 -> 37367 bytes apps/pack | Bin 47110 -> 47498 bytes apps/survey | Bin 43707 -> 44095 bytes apps/tests | Bin 33236 -> 33624 bytes 11 files changed, 0 insertions(+), 0 deletions(-) (limited to 'apps') diff --git a/apps/assort b/apps/assort index 65c376cb..08795d45 100755 Binary files a/apps/assort and b/apps/assort differ diff --git a/apps/crenshaw2-1 b/apps/crenshaw2-1 index 46a69570..a30a6230 100755 Binary files a/apps/crenshaw2-1 and b/apps/crenshaw2-1 differ diff --git a/apps/crenshaw2-1b b/apps/crenshaw2-1b index 1ecdf77d..4913856a 100755 Binary files a/apps/crenshaw2-1b and b/apps/crenshaw2-1b differ diff --git a/apps/desugar b/apps/desugar index 7e37ec11..a7f798ef 100755 Binary files a/apps/desugar and b/apps/desugar differ diff --git a/apps/dquotes b/apps/dquotes index bada9287..6bcdd993 100755 Binary files a/apps/dquotes and b/apps/dquotes differ diff --git a/apps/factorial b/apps/factorial index ba94e958..96d40859 100755 Binary files a/apps/factorial and b/apps/factorial differ diff --git a/apps/handle b/apps/handle index 6c590f36..87c25a9d 100755 Binary files a/apps/handle and b/apps/handle differ diff --git a/apps/hex b/apps/hex index 7d13505d..d0660086 100755 Binary files a/apps/hex and b/apps/hex differ diff --git a/apps/pack b/apps/pack index 820f7962..a8b58e43 100755 Binary files a/apps/pack and b/apps/pack differ diff --git a/apps/survey b/apps/survey index 3431001b..08026c71 100755 Binary files a/apps/survey and b/apps/survey differ diff --git a/apps/tests b/apps/tests index fb27af91..ee832d05 100755 Binary files a/apps/tests and b/apps/tests differ -- cgit 1.4.1-2-gfad0
path: root/query.go
blob: 63deb558a265c44ea617663479f4b2f9d22ead6c (plain) (blame)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83