blob: 146ed0dbe9c50010df63f6606a2b941d3ea6e397 (
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> (good)
(let targetType (ListType (DataType 'Uint16)))
(let src (AsList (Int32 '1) (Int32 '2) (Int32 '3)))
(let cast (StrictCast src targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
# List<Int32> -> List<Uint16> (fail)
(let targetType (ListType (DataType 'Uint16)))
(let src (AsList (Int32 '1) (Int32 '-2) (Int32 '3)))
(let cast (StrictCast src targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
# List<Int32?> -> List<Uint16> (fail)
(let targetType (ListType (DataType 'Uint16)))
(let src (AsList (Just (Int32 '1)) (Null) (Just (Int32 '3))))
(let cast (StrictCast src targetType))
(let world (Write! world res_sink (Key) cast '('('type))))
(let world (Commit! world res_sink))
(return world)
)
|