( (let config (DataSource 'config)) (let res_sink (DataSink 'result)) # List -> List (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 -> List (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 -> List (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) )