You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 4, 2023. It is now read-only.
-- | Open a file asynchronously. See the [Node Documentation](https://nodejs.org/api/fs.html#fs_fs_open_path_flags_mode_callback)
242
276
-- | for details.
243
-
fdOpen::FilePath
244
-
->F.FileFlags
245
-
->MaybeF.FileMode
246
-
->AffF.FileDescriptor
277
+
fdOpen
278
+
::FilePath
279
+
->F.FileFlags
280
+
->MaybeF.FileMode
281
+
->AffF.FileDescriptor
247
282
fdOpen = toAff3 A.fdOpen
248
283
249
284
-- | Read from a file asynchronously. See the [Node Documentation](https://nodejs.org/api/fs.html#fs_fs_read_fd_buffer_offset_length_position_callback)
250
285
-- | for details.
251
-
fdRead::F.FileDescriptor
252
-
->Buffer
253
-
->F.BufferOffset
254
-
->F.BufferLength
255
-
->MaybeF.FilePosition
256
-
->AffF.ByteCount
286
+
fdRead
287
+
::F.FileDescriptor
288
+
->Buffer
289
+
->F.BufferOffset
290
+
->F.BufferLength
291
+
->MaybeF.FilePosition
292
+
->AffF.ByteCount
257
293
fdRead = toAff5 A.fdRead
258
294
259
295
-- | Convenience function to fill the whole buffer from the current
@@ -263,12 +299,13 @@ fdNext = toAff2 A.fdNext
263
299
264
300
-- | Write to a file asynchronously. See the [Node Documentation](https://nodejs.org/api/fs.html#fs_fs_write_fd_buffer_offset_length_position_callback)
265
301
-- | for details.
266
-
fdWrite::F.FileDescriptor
267
-
->Buffer
268
-
->F.BufferOffset
269
-
->F.BufferLength
270
-
->MaybeF.FilePosition
271
-
->AffF.ByteCount
302
+
fdWrite
303
+
::F.FileDescriptor
304
+
->Buffer
305
+
->F.BufferOffset
306
+
->F.BufferLength
307
+
->MaybeF.FilePosition
308
+
->AffF.ByteCount
272
309
fdWrite = toAff5 A.fdWrite
273
310
274
311
-- | Convenience function to append the whole buffer to the current
0 commit comments