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