blob: c10d1243e9d1cff002e85503f1c0552a1872b2dd (
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
|
(
(let config (DataSource 'config))
(let world (Configure! world config 'PureDataSource 'yt))
(let res_sink (DataSink 'result))
# Int32? -> Uint16
(let targetType (OptionalType (DataType 'Uint16)))
(let cast (SafeCast (Just (Int32 '1)) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (SafeCast (Just (Int32 '1000000)) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (SafeCast (Nothing (OptionalType (DataType 'Int32))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
# Int32? -> Uint16?
(let targetType (OptionalType (DataType 'Uint16)))
(let cast (SafeCast (Just (Int32 '1)) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (SafeCast (Just (Int32 '1000000)) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (SafeCast (Nothing (OptionalType (DataType 'Int32))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
# Int32? -> Uint16???
(let targetType (OptionalType (OptionalType (OptionalType (DataType 'Uint16)))))
(let cast (SafeCast (Just (Int32 '1)) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (SafeCast (Just (Int32 '1000000)) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (SafeCast (Nothing (OptionalType (DataType 'Int32))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
# Int32??? -> Uint16?
(let targetType (OptionalType (DataType 'Uint16)))
(let cast (SafeCast (Just (Just (Just (Int32 '1)))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (SafeCast (Just (Just (Just (Int32 '1000000)))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (SafeCast (Nothing (OptionalType (OptionalType (OptionalType (DataType 'Int32))))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (SafeCast (Just (Nothing (OptionalType (OptionalType (DataType 'Int32))))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (SafeCast (Just (Just (Nothing (OptionalType (DataType 'Int32))))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
# Int32??? -> Uint16??
(let targetType (OptionalType (OptionalType (DataType 'Uint16))))
(let cast (SafeCast (Just (Just (Just (Int32 '1)))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (SafeCast (Just (Just (Just (Int32 '1000000)))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (SafeCast (Nothing (OptionalType (OptionalType (OptionalType (DataType 'Int32))))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (SafeCast (Just (Nothing (OptionalType (OptionalType (DataType 'Int32))))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (SafeCast (Just (Just (Nothing (OptionalType (DataType 'Int32))))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
# Int32??? -> Uint16????
(let targetType (OptionalType (OptionalType (OptionalType (OptionalType (DataType 'Uint16))))))
(let cast (SafeCast (Just (Just (Just (Int32 '1)))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (SafeCast (Just (Just (Just (Int32 '1000000)))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (SafeCast (Nothing (OptionalType (OptionalType (OptionalType (DataType 'Int32))))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (SafeCast (Just (Nothing (OptionalType (OptionalType (DataType 'Int32))))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let cast (SafeCast (Just (Just (Nothing (OptionalType (DataType 'Int32))))) targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let world (Commit! world res_sink))
(return world)
)
|