( (let config (DataSource 'config)) (let res_sink (DataSink 'result)) # Stream -> Stream (full) (let targetType (StreamType (DataType 'Uint16))) (let src (Iterator (AsList (Int32 '1) (Int32 '2) (Int32 '3)))) (let cast (SafeCast src targetType)) (let world (Write! world res_sink (Key) (Collect cast) '('('type)))) # Stream -> Stream (less) (let targetType (StreamType (DataType 'Uint16))) (let src (Iterator (AsList (Int32 '1) (Int32 '-2) (Int32 '3)))) (let cast (SafeCast src targetType)) (let world (Write! world res_sink (Key) (Collect cast) '('('type)))) # Stream -> Stream (less) (let targetType (StreamType (DataType 'Uint16))) (let src (Iterator (AsList (Just (Int32 '1)) (Null) (Just (Int32 '3))))) (let cast (SafeCast src targetType)) (let world (Write! world res_sink (Key) (Collect cast) '('('type)))) (let world (Commit! world res_sink)) (return world) )