Changeset 2541 for src/Pugs/Types/Array.hs
- Timestamp:
- 05/01/05 06:40:46 (4 years ago)
- svk:copy_cache_prev:
- 4052
- Files:
-
- 1 modified
-
src/Pugs/Types/Array.hs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/Types/Array.hs
r2528 r2541 201 201 array_fetchSize = return . length 202 202 array_fetchVal av idx = getIndex idx (Just undef) (return av) Nothing 203 array_fetchElem av idx = do 204 val <- array_fetchVal av idx 205 return $ constScalar val 203 206 array_storeVal _ _ _ = retConstError undef 204 207 array_storeElem _ _ _ = retConstError undef
