blob: 8f00b970d195027b5d582dd5f0d51bb1cbe92711 (
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
|
(
(let config (DataSource 'config))
(let world (Configure! world config 'PureDataSource 'yt))
(let res_sink (DataSink 'result))
# List<Int32> -> List<Uint16> (full)
(let targetType (ListType (DataType 'Uint16)))
(let src (AsList (Int32 '1) (Int32 '2) (Int32 '3)))
(let cast (SafeCast src targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
# List<Int32> -> List<Uint16> (less)
(let targetType (ListType (DataType 'Uint16)))
(let src (AsList (Int32 '1) (Int32 '-2) (Int32 '3)))
(let cast (SafeCast src targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
# List<Int32?> -> List<Uint16> (less)
(let targetType (ListType (DataType 'Uint16)))
(let src (AsList (Just (Int32 '1)) (Null) (Just (Int32 '3))))
(let cast (SafeCast src targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let world (Commit! world res_sink))
(return world)
)
|