Packages

package fsMod

Source
package.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. fsMod
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. trait BaseEncodingOptions extends Object with StObject
    Annotations
    @JSType() @native()
  2. trait BigIntOptions extends Object with StObject
    Annotations
    @JSType() @native()
  3. class BigIntStats extends Object with StObject with StatsBase[BigInt]
    Annotations
    @JSType() @JSImport("fs", "BigIntStats") @native()
  4. trait BufferEncodingOption extends Object with StObject
    Annotations
    @JSType()
  5. class Dir extends Object with StObject
    Annotations
    @JSType() @JSImport("fs", "Dir") @native()
  6. class Dirent extends Object with StObject
    Annotations
    @JSType() @JSImport("fs", "Dirent") @native()
  7. trait FSWatcher extends Object with StObject
    Annotations
    @JSType() @native()
  8. trait MakeDirectoryOptions extends Object with StObject
    Annotations
    @JSType() @native()
  9. type Mode = |[Double, java.lang.String]
  10. type NoParamCallback = Function1[|[ErrnoException, Null], Unit]
  11. trait OpenDirOptions extends Object with StObject
    Annotations
    @JSType() @native()
  12. type OpenMode = |[Double, java.lang.String]
  13. type PathLike = |[_PathLike, java.lang.String]
  14. type ReadPosition = |[Double, BigInt]
  15. class ReadStream extends Object with StObject
    Annotations
    @JSType() @JSImport("fs", "ReadStream") @native()
  16. trait ReadStreamOptions extends Object with StObject with StreamOptions
    Annotations
    @JSType() @native()
  17. trait ReadSyncOptions extends Object with StObject
    Annotations
    @JSType() @native()
  18. trait ReadVResult extends Object with StObject
    Annotations
    @JSType() @native()
  19. trait RmDirOptions extends Object with StObject
    Annotations
    @JSType() @native()
  20. trait RmOptions extends Object with StObject
    Annotations
    @JSType() @native()
  21. trait StatOptions extends Object with StObject
    Annotations
    @JSType() @native()
  22. trait StatSyncFn[TDescriptor] extends Function
    Annotations
    @JSType() @native()
  23. class Stats extends Object with StObject with StatsBase[Double]
    Annotations
    @JSType() @JSImport("fs", "Stats") @native()
  24. trait StatsBase[T] extends Object with StObject
    Annotations
    @JSType() @native()
  25. trait StreamOptions extends Object with StObject
    Annotations
    @JSType() @native()
  26. type WatchListener[T] = Function2[|[rename, change], T, Unit]
  27. trait WatchOptions extends Object with StObject with Abortable
    Annotations
    @JSType() @native()
  28. type WriteFileOptions = |[|[BaseEncodingOptionsAbortaEncoding, java.lang.String], Null]
  29. class WriteStream extends Object with StObject
    Annotations
    @JSType() @JSImport("fs", "WriteStream") @native()
  30. trait WriteVResult extends Object with StObject
    Annotations
    @JSType() @native()
  31. trait _PathLike extends Object with StObject
    Annotations
    @JSType()

Value Members

  1. def access(path: PathLike, mode: Unit, callback: NoParamCallback): Unit
    Annotations
    @inline()
  2. def access(path: PathLike, mode: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  3. def access(path: PathLike, callback: NoParamCallback): Unit
    Annotations
    @inline()
  4. def accessSync(path: PathLike, mode: Double): Unit
    Annotations
    @inline()
  5. def accessSync(path: PathLike): Unit
    Annotations
    @inline()
  6. def appendFile(file: Double, data: Uint8Array, options: WriteFileOptions, callback: NoParamCallback): Unit
    Annotations
    @inline()
  7. def appendFile(file: Double, data: Uint8Array, callback: NoParamCallback): Unit
    Annotations
    @inline()
  8. def appendFile(file: Double, data: java.lang.String, options: WriteFileOptions, callback: NoParamCallback): Unit
    Annotations
    @inline()
  9. def appendFile(file: Double, data: java.lang.String, callback: NoParamCallback): Unit
    Annotations
    @inline()
  10. def appendFile(file: PathLike, data: Uint8Array, options: WriteFileOptions, callback: NoParamCallback): Unit
    Annotations
    @inline()
  11. def appendFile(file: PathLike, data: Uint8Array, callback: NoParamCallback): Unit
    Annotations
    @inline()
  12. def appendFile(file: PathLike, data: java.lang.String, options: WriteFileOptions, callback: NoParamCallback): Unit
    Annotations
    @inline()
  13. def appendFile(file: PathLike, data: java.lang.String, callback: NoParamCallback): Unit
    Annotations
    @inline()
  14. def appendFileSync(file: Double, data: Uint8Array, options: WriteFileOptions): Unit
    Annotations
    @inline()
  15. def appendFileSync(file: Double, data: Uint8Array): Unit
    Annotations
    @inline()
  16. def appendFileSync(file: Double, data: java.lang.String, options: WriteFileOptions): Unit
    Annotations
    @inline()
  17. def appendFileSync(file: Double, data: java.lang.String): Unit
    Annotations
    @inline()
  18. def appendFileSync(file: PathLike, data: Uint8Array, options: WriteFileOptions): Unit
    Annotations
    @inline()
  19. def appendFileSync(file: PathLike, data: Uint8Array): Unit
    Annotations
    @inline()
  20. def appendFileSync(file: PathLike, data: java.lang.String, options: WriteFileOptions): Unit
    Annotations
    @inline()
  21. def appendFileSync(file: PathLike, data: java.lang.String): Unit
    Annotations
    @inline()
  22. def chmod(path: PathLike, mode: Mode, callback: NoParamCallback): Unit
    Annotations
    @inline()
  23. def chmodSync(path: PathLike, mode: Mode): Unit
    Annotations
    @inline()
  24. def chown(path: PathLike, uid: Double, gid: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  25. def chownSync(path: PathLike, uid: Double, gid: Double): Unit
    Annotations
    @inline()
  26. def close(fd: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  27. def close(fd: Double): Unit
    Annotations
    @inline()
  28. def closeSync(fd: Double): Unit
    Annotations
    @inline()
  29. def copyFile(src: PathLike, dest: PathLike, flags: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  30. def copyFile(src: PathLike, dest: PathLike, callback: NoParamCallback): Unit
    Annotations
    @inline()
  31. def copyFileSync(src: PathLike, dest: PathLike, flags: Double): Unit
    Annotations
    @inline()
  32. def copyFileSync(src: PathLike, dest: PathLike): Unit
    Annotations
    @inline()
  33. def createReadStream(path: PathLike, options: java.lang.String): ReadStream
    Annotations
    @inline()
  34. def createReadStream(path: PathLike, options: ReadStreamOptions): ReadStream
    Annotations
    @inline()
  35. def createReadStream(path: PathLike): ReadStream
    Annotations
    @inline()
  36. def createWriteStream(path: PathLike, options: java.lang.String): WriteStream
    Annotations
    @inline()
  37. def createWriteStream(path: PathLike, options: StreamOptions): WriteStream
    Annotations
    @inline()
  38. def createWriteStream(path: PathLike): WriteStream
    Annotations
    @inline()
  39. def exists(path: PathLike, callback: Function1[Boolean, Unit]): Unit
    Annotations
    @inline()
  40. def existsSync(path: PathLike): Boolean
    Annotations
    @inline()
  41. def fchmod(fd: Double, mode: Mode, callback: NoParamCallback): Unit
    Annotations
    @inline()
  42. def fchmodSync(fd: Double, mode: Mode): Unit
    Annotations
    @inline()
  43. def fchown(fd: Double, uid: Double, gid: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  44. def fchownSync(fd: Double, uid: Double, gid: Double): Unit
    Annotations
    @inline()
  45. def fdatasync(fd: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  46. def fdatasyncSync(fd: Double): Unit
    Annotations
    @inline()
  47. def fstat(fd: Double, options: Unit, callback: Function2[|[ErrnoException, Null], |[BigIntStats, Stats], Unit]): Unit
    Annotations
    @inline()
  48. def fstat(fd: Double, options: StatOptions, callback: Function2[|[ErrnoException, Null], |[Stats, BigIntStats], Unit]): Unit
    Annotations
    @inline()
  49. def fstat(fd: Double, options: StatOptionsbiginttrue, callback: Function2[|[ErrnoException, Null], BigIntStats, Unit]): Unit
    Annotations
    @inline()
  50. def fstat(fd: Double, options: StatOptionsbigintfalseund, callback: Function2[|[ErrnoException, Null], Stats, Unit]): Unit
    Annotations
    @inline()
  51. def fstat(fd: Double, callback: Function2[|[ErrnoException, Null], Stats, Unit]): Unit
    Annotations
    @inline()
  52. def fstatSync: StatSyncFn[Double]
    Annotations
    @inline()
  53. def fsync(fd: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  54. def fsyncSync(fd: Double): Unit
    Annotations
    @inline()
  55. def ftruncate(fd: Double, len: Unit, callback: NoParamCallback): Unit
    Annotations
    @inline()
  56. def ftruncate(fd: Double, len: Null, callback: NoParamCallback): Unit
    Annotations
    @inline()
  57. def ftruncate(fd: Double, len: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  58. def ftruncate(fd: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  59. def ftruncateSync(fd: Double, len: Double): Unit
    Annotations
    @inline()
  60. def ftruncateSync(fd: Double): Unit
    Annotations
    @inline()
  61. def futimes(fd: Double, atime: Double, mtime: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  62. def futimes(fd: Double, atime: Double, mtime: Date, callback: NoParamCallback): Unit
    Annotations
    @inline()
  63. def futimes(fd: Double, atime: Double, mtime: java.lang.String, callback: NoParamCallback): Unit
    Annotations
    @inline()
  64. def futimes(fd: Double, atime: Date, mtime: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  65. def futimes(fd: Double, atime: Date, mtime: Date, callback: NoParamCallback): Unit
    Annotations
    @inline()
  66. def futimes(fd: Double, atime: Date, mtime: java.lang.String, callback: NoParamCallback): Unit
    Annotations
    @inline()
  67. def futimes(fd: Double, atime: java.lang.String, mtime: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  68. def futimes(fd: Double, atime: java.lang.String, mtime: Date, callback: NoParamCallback): Unit
    Annotations
    @inline()
  69. def futimes(fd: Double, atime: java.lang.String, mtime: java.lang.String, callback: NoParamCallback): Unit
    Annotations
    @inline()
  70. def futimesSync(fd: Double, atime: Double, mtime: Double): Unit
    Annotations
    @inline()
  71. def futimesSync(fd: Double, atime: Double, mtime: Date): Unit
    Annotations
    @inline()
  72. def futimesSync(fd: Double, atime: Double, mtime: java.lang.String): Unit
    Annotations
    @inline()
  73. def futimesSync(fd: Double, atime: Date, mtime: Double): Unit
    Annotations
    @inline()
  74. def futimesSync(fd: Double, atime: Date, mtime: Date): Unit
    Annotations
    @inline()
  75. def futimesSync(fd: Double, atime: Date, mtime: java.lang.String): Unit
    Annotations
    @inline()
  76. def futimesSync(fd: Double, atime: java.lang.String, mtime: Double): Unit
    Annotations
    @inline()
  77. def futimesSync(fd: Double, atime: java.lang.String, mtime: Date): Unit
    Annotations
    @inline()
  78. def futimesSync(fd: Double, atime: java.lang.String, mtime: java.lang.String): Unit
    Annotations
    @inline()
  79. def lchmod(path: PathLike, mode: Mode, callback: NoParamCallback): Unit
    Annotations
    @inline()
  80. def lchmodSync(path: PathLike, mode: Mode): Unit
    Annotations
    @inline()
  81. def lchown(path: PathLike, uid: Double, gid: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  82. def lchownSync(path: PathLike, uid: Double, gid: Double): Unit
    Annotations
    @inline()
  83. def link(existingPath: PathLike, newPath: PathLike, callback: NoParamCallback): Unit
    Annotations
    @inline()
  84. def linkSync(existingPath: PathLike, newPath: PathLike): Unit
    Annotations
    @inline()
  85. def lstat(path: PathLike, options: Unit, callback: Function2[|[ErrnoException, Null], |[BigIntStats, Stats], Unit]): Unit
    Annotations
    @inline()
  86. def lstat(path: PathLike, options: StatOptions, callback: Function2[|[ErrnoException, Null], |[Stats, BigIntStats], Unit]): Unit
    Annotations
    @inline()
  87. def lstat(path: PathLike, options: StatOptionsbiginttrue, callback: Function2[|[ErrnoException, Null], BigIntStats, Unit]): Unit
    Annotations
    @inline()
  88. def lstat(path: PathLike, options: StatOptionsbigintfalseund, callback: Function2[|[ErrnoException, Null], Stats, Unit]): Unit
    Annotations
    @inline()
  89. def lstat(path: PathLike, callback: Function2[|[ErrnoException, Null], Stats, Unit]): Unit
    Annotations
    @inline()
  90. def lstatSync: StatSyncFn[PathLike]
    Annotations
    @inline()
  91. def lutimes(path: PathLike, atime: Double, mtime: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  92. def lutimes(path: PathLike, atime: Double, mtime: Date, callback: NoParamCallback): Unit
    Annotations
    @inline()
  93. def lutimes(path: PathLike, atime: Double, mtime: java.lang.String, callback: NoParamCallback): Unit
    Annotations
    @inline()
  94. def lutimes(path: PathLike, atime: Date, mtime: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  95. def lutimes(path: PathLike, atime: Date, mtime: Date, callback: NoParamCallback): Unit
    Annotations
    @inline()
  96. def lutimes(path: PathLike, atime: Date, mtime: java.lang.String, callback: NoParamCallback): Unit
    Annotations
    @inline()
  97. def lutimes(path: PathLike, atime: java.lang.String, mtime: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  98. def lutimes(path: PathLike, atime: java.lang.String, mtime: Date, callback: NoParamCallback): Unit
    Annotations
    @inline()
  99. def lutimes(path: PathLike, atime: java.lang.String, mtime: java.lang.String, callback: NoParamCallback): Unit
    Annotations
    @inline()
  100. def lutimesSync(path: PathLike, atime: Double, mtime: Double): Unit
    Annotations
    @inline()
  101. def lutimesSync(path: PathLike, atime: Double, mtime: Date): Unit
    Annotations
    @inline()
  102. def lutimesSync(path: PathLike, atime: Double, mtime: java.lang.String): Unit
    Annotations
    @inline()
  103. def lutimesSync(path: PathLike, atime: Date, mtime: Double): Unit
    Annotations
    @inline()
  104. def lutimesSync(path: PathLike, atime: Date, mtime: Date): Unit
    Annotations
    @inline()
  105. def lutimesSync(path: PathLike, atime: Date, mtime: java.lang.String): Unit
    Annotations
    @inline()
  106. def lutimesSync(path: PathLike, atime: java.lang.String, mtime: Double): Unit
    Annotations
    @inline()
  107. def lutimesSync(path: PathLike, atime: java.lang.String, mtime: Date): Unit
    Annotations
    @inline()
  108. def lutimesSync(path: PathLike, atime: java.lang.String, mtime: java.lang.String): Unit
    Annotations
    @inline()
  109. def mkdir(path: PathLike, options: Unit, callback: Function2[|[ErrnoException, Null], UndefOr[java.lang.String], Unit]): Unit
    Annotations
    @inline()
  110. def mkdir(path: PathLike, options: Unit, callback: NoParamCallback): Unit
    Annotations
    @inline()
  111. def mkdir(path: PathLike, options: Null, callback: Function2[|[ErrnoException, Null], UndefOr[java.lang.String], Unit]): Unit
    Annotations
    @inline()
  112. def mkdir(path: PathLike, options: Null, callback: NoParamCallback): Unit
    Annotations
    @inline()
  113. def mkdir(path: PathLike, options: Mode, callback: Function2[|[ErrnoException, Null], UndefOr[java.lang.String], Unit]): Unit
    Annotations
    @inline()
  114. def mkdir(path: PathLike, options: Mode, callback: NoParamCallback): Unit
    Annotations
    @inline()
  115. def mkdir(path: PathLike, options: MakeDirectoryOptions, callback: Function2[|[ErrnoException, Null], UndefOr[java.lang.String], Unit]): Unit
    Annotations
    @inline()
  116. def mkdir(path: PathLike, options: MakeDirectoryOptionsrecur, callback: Function2[|[ErrnoException, Null], UndefOr[java.lang.String], Unit]): Unit
    Annotations
    @inline()
  117. def mkdir(path: PathLike, options: MakeDirectoryOptionsrecurMode, callback: NoParamCallback): Unit
    Annotations
    @inline()
  118. def mkdir(path: PathLike, callback: NoParamCallback): Unit
    Annotations
    @inline()
  119. def mkdirSync(path: PathLike, options: Mode): UndefOr[java.lang.String]
    Annotations
    @inline()
  120. def mkdirSync(path: PathLike, options: MakeDirectoryOptions): UndefOr[java.lang.String]
    Annotations
    @inline()
  121. def mkdirSync(path: PathLike, options: MakeDirectoryOptionsrecurMode): Unit
    Annotations
    @inline()
  122. def mkdirSync(path: PathLike, options: MakeDirectoryOptionsrecur): UndefOr[java.lang.String]
    Annotations
    @inline()
  123. def mkdirSync(path: PathLike): UndefOr[java.lang.String]
    Annotations
    @inline()
  124. def mkdirSync_Unit(path: PathLike, options: Mode): Unit
    Annotations
    @inline()
  125. def mkdirSync_Unit(path: PathLike): Unit
    Annotations
    @inline()
  126. def mkdtemp(prefix: java.lang.String, options: Unit, callback: Function2[|[ErrnoException, Null], |[Buffer, java.lang.String], Unit]): Unit
    Annotations
    @inline()
  127. def mkdtemp(prefix: java.lang.String, options: Null, callback: Function2[|[ErrnoException, Null], |[Buffer, java.lang.String], Unit]): Unit
    Annotations
    @inline()
  128. def mkdtemp(prefix: java.lang.String, options: java.lang.String, callback: Function2[|[ErrnoException, Null], |[java.lang.String, Buffer], Unit]): Unit
    Annotations
    @inline()
  129. def mkdtemp(prefix: java.lang.String, options: buffer_, callback: Function2[|[ErrnoException, Null], Buffer, Unit]): Unit
    Annotations
    @inline()
  130. def mkdtemp(prefix: java.lang.String, options: BaseEncodingOptions, callback: Function2[|[ErrnoException, Null], |[Buffer, java.lang.String], Unit]): Unit
    Annotations
    @inline()
  131. def mkdtemp(prefix: java.lang.String, options: BufferEncoding, callback: Function2[|[ErrnoException, Null], java.lang.String, Unit]): Unit
    Annotations
    @inline()
  132. def mkdtemp(prefix: java.lang.String, options: 2, callback: Function2[|[ErrnoException, Null], Buffer, Unit]): Unit
    Annotations
    @inline()
  133. def mkdtemp(prefix: java.lang.String, callback: Function2[|[ErrnoException, Null], java.lang.String, Unit]): Unit
    Annotations
    @inline()
  134. def mkdtempSync(prefix: java.lang.String, options: java.lang.String): |[java.lang.String, Buffer]
    Annotations
    @inline()
  135. def mkdtempSync(prefix: java.lang.String, options: BufferEncodingOption): Buffer
    Annotations
    @inline()
  136. def mkdtempSync(prefix: java.lang.String, options: BaseEncodingOptions): java.lang.String
    Annotations
    @inline()
  137. def mkdtempSync(prefix: java.lang.String, options: BufferEncoding): java.lang.String
    Annotations
    @inline()
  138. def mkdtempSync(prefix: java.lang.String): java.lang.String
    Annotations
    @inline()
  139. def mkdtempSync_Union(prefix: java.lang.String, options: BaseEncodingOptions): |[java.lang.String, Buffer]
    Annotations
    @inline()
  140. def mkdtempSync_Union(prefix: java.lang.String): |[java.lang.String, Buffer]
    Annotations
    @inline()
  141. def open(path: PathLike, flags: OpenMode, mode: Unit, callback: Function2[|[ErrnoException, Null], Double, Unit]): Unit
    Annotations
    @inline()
  142. def open(path: PathLike, flags: OpenMode, mode: Null, callback: Function2[|[ErrnoException, Null], Double, Unit]): Unit
    Annotations
    @inline()
  143. def open(path: PathLike, flags: OpenMode, mode: Mode, callback: Function2[|[ErrnoException, Null], Double, Unit]): Unit
    Annotations
    @inline()
  144. def open(path: PathLike, flags: OpenMode, callback: Function2[|[ErrnoException, Null], Double, Unit]): Unit
    Annotations
    @inline()
  145. def openSync(path: PathLike, flags: OpenMode, mode: Mode): Double
    Annotations
    @inline()
  146. def openSync(path: PathLike, flags: OpenMode): Double
    Annotations
    @inline()
  147. def opendir(path: java.lang.String, options: OpenDirOptions, cb: Function2[|[ErrnoException, Null], Dir, Unit]): Unit
    Annotations
    @inline()
  148. def opendir(path: java.lang.String, cb: Function2[|[ErrnoException, Null], Dir, Unit]): Unit
    Annotations
    @inline()
  149. def opendirSync(path: java.lang.String, options: OpenDirOptions): Dir
    Annotations
    @inline()
  150. def opendirSync(path: java.lang.String): Dir
    Annotations
    @inline()
  151. def read(fd: Double, buffer: Uint8ClampedArray, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  152. def read(fd: Double, buffer: Uint8ClampedArray, offset: Double, length: Double, position: ReadPosition, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  153. def read(fd: Double, buffer: Uint8Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  154. def read(fd: Double, buffer: Uint8Array, offset: Double, length: Double, position: ReadPosition, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  155. def read(fd: Double, buffer: Uint32Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  156. def read(fd: Double, buffer: Uint32Array, offset: Double, length: Double, position: ReadPosition, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  157. def read(fd: Double, buffer: Uint16Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  158. def read(fd: Double, buffer: Uint16Array, offset: Double, length: Double, position: ReadPosition, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  159. def read(fd: Double, buffer: Int8Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  160. def read(fd: Double, buffer: Int8Array, offset: Double, length: Double, position: ReadPosition, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  161. def read(fd: Double, buffer: Int32Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  162. def read(fd: Double, buffer: Int32Array, offset: Double, length: Double, position: ReadPosition, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  163. def read(fd: Double, buffer: Int16Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  164. def read(fd: Double, buffer: Int16Array, offset: Double, length: Double, position: ReadPosition, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  165. def read(fd: Double, buffer: Float64Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  166. def read(fd: Double, buffer: Float64Array, offset: Double, length: Double, position: ReadPosition, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  167. def read(fd: Double, buffer: Float32Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  168. def read(fd: Double, buffer: Float32Array, offset: Double, length: Double, position: ReadPosition, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  169. def read(fd: Double, buffer: DataView, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  170. def read(fd: Double, buffer: DataView, offset: Double, length: Double, position: ReadPosition, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  171. def read(fd: Double, buffer: BigUint64Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  172. def read(fd: Double, buffer: BigUint64Array, offset: Double, length: Double, position: ReadPosition, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  173. def read(fd: Double, buffer: BigInt64Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  174. def read(fd: Double, buffer: BigInt64Array, offset: Double, length: Double, position: ReadPosition, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  175. def readFile(path: Double, options: Unit, callback: Function2[|[ErrnoException, Null], |[Buffer, java.lang.String], Unit]): Unit
    Annotations
    @inline()
  176. def readFile(path: Double, options: Null, callback: Function2[|[ErrnoException, Null], |[Buffer, java.lang.String], Unit]): Unit
    Annotations
    @inline()
  177. def readFile(path: Double, options: java.lang.String, callback: Function2[|[ErrnoException, Null], |[Buffer, java.lang.String], Unit]): Unit
    Annotations
    @inline()
  178. def readFile(path: Double, options: encodingnullundefinedflagEncoding, callback: Function2[|[ErrnoException, Null], Buffer, Unit]): Unit
    Annotations
    @inline()
  179. def readFile(path: Double, options: encodingBufferEncodingflaEncoding, callback: Function2[|[ErrnoException, Null], java.lang.String, Unit]): Unit
    Annotations
    @inline()
  180. def readFile(path: Double, options: BaseEncodingOptionsflagst, callback: Function2[|[ErrnoException, Null], |[java.lang.String, Buffer], Unit]): Unit
    Annotations
    @inline()
  181. def readFile(path: Double, callback: Function2[|[ErrnoException, Null], Buffer, Unit]): Unit
    Annotations
    @inline()
  182. def readFile(path: PathLike, options: Unit, callback: Function2[|[ErrnoException, Null], |[Buffer, java.lang.String], Unit]): Unit
    Annotations
    @inline()
  183. def readFile(path: PathLike, options: Null, callback: Function2[|[ErrnoException, Null], |[Buffer, java.lang.String], Unit]): Unit
    Annotations
    @inline()
  184. def readFile(path: PathLike, options: java.lang.String, callback: Function2[|[ErrnoException, Null], |[Buffer, java.lang.String], Unit]): Unit
    Annotations
    @inline()
  185. def readFile(path: PathLike, options: encodingnullundefinedflagEncoding, callback: Function2[|[ErrnoException, Null], Buffer, Unit]): Unit
    Annotations
    @inline()
  186. def readFile(path: PathLike, options: encodingBufferEncodingflaEncoding, callback: Function2[|[ErrnoException, Null], java.lang.String, Unit]): Unit
    Annotations
    @inline()
  187. def readFile(path: PathLike, options: BaseEncodingOptionsflagst, callback: Function2[|[ErrnoException, Null], |[java.lang.String, Buffer], Unit]): Unit
    Annotations
    @inline()
  188. def readFile(path: PathLike, callback: Function2[|[ErrnoException, Null], Buffer, Unit]): Unit
    Annotations
    @inline()
  189. def readFileSync(path: Double, options: BufferEncoding): java.lang.String
    Annotations
    @inline()
  190. def readFileSync(path: Double, options: Flag): Buffer
    Annotations
    @inline()
  191. def readFileSync(path: Double, options: EncodingFlag): java.lang.String
    Annotations
    @inline()
  192. def readFileSync(path: Double, options: BaseEncodingOptionsflagstEncoding): |[java.lang.String, Buffer]
    Annotations
    @inline()
  193. def readFileSync(path: Double): |[java.lang.String, Buffer]
    Annotations
    @inline()
  194. def readFileSync(path: PathLike, options: BufferEncoding): java.lang.String
    Annotations
    @inline()
  195. def readFileSync(path: PathLike, options: Flag): Buffer
    Annotations
    @inline()
  196. def readFileSync(path: PathLike, options: EncodingFlag): java.lang.String
    Annotations
    @inline()
  197. def readFileSync(path: PathLike, options: BaseEncodingOptionsflagstEncoding): |[java.lang.String, Buffer]
    Annotations
    @inline()
  198. def readFileSync(path: PathLike): |[java.lang.String, Buffer]
    Annotations
    @inline()
  199. def readFileSync_Buffer(path: Double): Buffer
    Annotations
    @inline()
  200. def readFileSync_Buffer(path: PathLike): Buffer
    Annotations
    @inline()
  201. def readFileSync_Union(path: Double, options: BufferEncoding): |[java.lang.String, Buffer]
    Annotations
    @inline()
  202. def readFileSync_Union(path: PathLike, options: BufferEncoding): |[java.lang.String, Buffer]
    Annotations
    @inline()
  203. def readSync(fd: Double, buffer: ArrayBufferView, opts: ReadSyncOptions): Double
    Annotations
    @inline()
  204. def readSync(fd: Double, buffer: ArrayBufferView, offset: Double, length: Double, position: ReadPosition): Double
    Annotations
    @inline()
  205. def readSync(fd: Double, buffer: ArrayBufferView, offset: Double, length: Double): Double
    Annotations
    @inline()
  206. def readSync(fd: Double, buffer: ArrayBufferView): Double
    Annotations
    @inline()
  207. def readdir(path: PathLike, options: Unit, callback: Function2[|[ErrnoException, Null], Array[|[Buffer, java.lang.String]], Unit]): Unit
    Annotations
    @inline()
  208. def readdir(path: PathLike, options: Null, callback: Function2[|[ErrnoException, Null], Array[|[Buffer, java.lang.String]], Unit]): Unit
    Annotations
    @inline()
  209. def readdir(path: PathLike, options: buffer_, callback: Function2[|[ErrnoException, Null], Array[Buffer], Unit]): Unit
    Annotations
    @inline()
  210. def readdir(path: PathLike, options: BufferEncoding, callback: Function2[|[ErrnoException, Null], Array[|[Buffer, java.lang.String]], Unit]): Unit
    Annotations
    @inline()
  211. def readdir(path: PathLike, options: WithFileTypes, callback: Function2[|[ErrnoException, Null], Array[java.lang.String], Unit]): Unit
    Annotations
    @inline()
  212. def readdir(path: PathLike, options: Encoding, callback: Function2[|[ErrnoException, Null], Array[Buffer], Unit]): Unit
    Annotations
    @inline()
  213. def readdir(path: PathLike, options: BaseEncodingOptionswithFi, callback: Function2[|[ErrnoException, Null], Array[|[Buffer, java.lang.String]], Unit]): Unit
    Annotations
    @inline()
  214. def readdir(path: PathLike, options: BaseEncodingOptionswithFiEncoding, callback: Function2[|[ErrnoException, Null], Array[Dirent], Unit]): Unit
    Annotations
    @inline()
  215. def readdir(path: PathLike, callback: Function2[|[ErrnoException, Null], Array[java.lang.String], Unit]): Unit
    Annotations
    @inline()
  216. def readdirSync(path: PathLike, options: BufferEncoding): Array[java.lang.String]
    Annotations
    @inline()
  217. def readdirSync(path: PathLike, options: WithFileTypes): Array[java.lang.String]
    Annotations
    @inline()
  218. def readdirSync(path: PathLike, options: Encoding): Array[Buffer]
    Annotations
    @inline()
  219. def readdirSync(path: PathLike, options: BaseEncodingOptionswithFiEncoding): Array[Dirent]
    Annotations
    @inline()
  220. def readdirSync(path: PathLike, options: BaseEncodingOptionswithFi): Array[|[Buffer, java.lang.String]]
    Annotations
    @inline()
  221. def readdirSync(path: PathLike): Array[java.lang.String]
    Annotations
    @inline()
  222. def readdirSync_buffer(path: PathLike, options: buffer_): Array[Buffer]
    Annotations
    @inline()
  223. def readlink(path: PathLike, options: Unit, callback: Function2[|[ErrnoException, Null], |[Buffer, java.lang.String], Unit]): Unit
    Annotations
    @inline()
  224. def readlink(path: PathLike, options: Null, callback: Function2[|[ErrnoException, Null], |[Buffer, java.lang.String], Unit]): Unit
    Annotations
    @inline()
  225. def readlink(path: PathLike, options: java.lang.String, callback: Function2[|[ErrnoException, Null], |[java.lang.String, Buffer], Unit]): Unit
    Annotations
    @inline()
  226. def readlink(path: PathLike, options: BufferEncodingOption, callback: Function2[|[ErrnoException, Null], Buffer, Unit]): Unit
    Annotations
    @inline()
  227. def readlink(path: PathLike, options: BaseEncodingOptions, callback: Function2[|[ErrnoException, Null], |[Buffer, java.lang.String], Unit]): Unit
    Annotations
    @inline()
  228. def readlink(path: PathLike, options: BufferEncoding, callback: Function2[|[ErrnoException, Null], java.lang.String, Unit]): Unit
    Annotations
    @inline()
  229. def readlink(path: PathLike, callback: Function2[|[ErrnoException, Null], java.lang.String, Unit]): Unit
    Annotations
    @inline()
  230. def readlinkSync(path: PathLike, options: java.lang.String): |[java.lang.String, Buffer]
    Annotations
    @inline()
  231. def readlinkSync(path: PathLike, options: BufferEncodingOption): Buffer
    Annotations
    @inline()
  232. def readlinkSync(path: PathLike, options: BaseEncodingOptions): java.lang.String
    Annotations
    @inline()
  233. def readlinkSync(path: PathLike, options: BufferEncoding): java.lang.String
    Annotations
    @inline()
  234. def readlinkSync(path: PathLike): java.lang.String
    Annotations
    @inline()
  235. def readlinkSync_Union(path: PathLike, options: BaseEncodingOptions): |[java.lang.String, Buffer]
    Annotations
    @inline()
  236. def readlinkSync_Union(path: PathLike): |[java.lang.String, Buffer]
    Annotations
    @inline()
  237. def readv(fd: Double, buffers: Array[ArrayBufferView], position: Double, cb: Function3[|[ErrnoException, Null], Double, Array[ArrayBufferView], Unit]): Unit
    Annotations
    @inline()
  238. def readv(fd: Double, buffers: Array[ArrayBufferView], cb: Function3[|[ErrnoException, Null], Double, Array[ArrayBufferView], Unit]): Unit
    Annotations
    @inline()
  239. def readvSync(fd: Double, buffers: Array[ArrayBufferView], position: Double): Double
    Annotations
    @inline()
  240. def readvSync(fd: Double, buffers: Array[ArrayBufferView]): Double
    Annotations
    @inline()
  241. def rename(oldPath: PathLike, newPath: PathLike, callback: NoParamCallback): Unit
    Annotations
    @inline()
  242. def renameSync(oldPath: PathLike, newPath: PathLike): Unit
    Annotations
    @inline()
  243. def rm(path: PathLike, options: RmOptions, callback: NoParamCallback): Unit
    Annotations
    @inline()
  244. def rm(path: PathLike, callback: NoParamCallback): Unit
    Annotations
    @inline()
  245. def rmSync(path: PathLike, options: RmOptions): Unit
    Annotations
    @inline()
  246. def rmSync(path: PathLike): Unit
    Annotations
    @inline()
  247. def rmdir(path: PathLike, options: RmDirOptions, callback: NoParamCallback): Unit
    Annotations
    @inline()
  248. def rmdir(path: PathLike, callback: NoParamCallback): Unit
    Annotations
    @inline()
  249. def rmdirSync(path: PathLike, options: RmDirOptions): Unit
    Annotations
    @inline()
  250. def rmdirSync(path: PathLike): Unit
    Annotations
    @inline()
  251. def stat(path: PathLike, options: Unit, callback: Function2[|[ErrnoException, Null], |[BigIntStats, Stats], Unit]): Unit
    Annotations
    @inline()
  252. def stat(path: PathLike, options: StatOptions, callback: Function2[|[ErrnoException, Null], |[Stats, BigIntStats], Unit]): Unit
    Annotations
    @inline()
  253. def stat(path: PathLike, options: StatOptionsbiginttrue, callback: Function2[|[ErrnoException, Null], BigIntStats, Unit]): Unit
    Annotations
    @inline()
  254. def stat(path: PathLike, options: StatOptionsbigintfalseund, callback: Function2[|[ErrnoException, Null], Stats, Unit]): Unit
    Annotations
    @inline()
  255. def stat(path: PathLike, callback: Function2[|[ErrnoException, Null], Stats, Unit]): Unit
    Annotations
    @inline()
  256. def statSync: StatSyncFn[PathLike]
    Annotations
    @inline()
  257. def symlinkSync(target: PathLike, path: PathLike, type: Type): Unit
    Annotations
    @inline()
  258. def symlinkSync(target: PathLike, path: PathLike): Unit
    Annotations
    @inline()
  259. def truncate(path: PathLike, len: Unit, callback: NoParamCallback): Unit
    Annotations
    @inline()
  260. def truncate(path: PathLike, len: Null, callback: NoParamCallback): Unit
    Annotations
    @inline()
  261. def truncate(path: PathLike, len: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  262. def truncate(path: PathLike, callback: NoParamCallback): Unit
    Annotations
    @inline()
  263. def truncateSync(path: PathLike, len: Double): Unit
    Annotations
    @inline()
  264. def truncateSync(path: PathLike): Unit
    Annotations
    @inline()
  265. def unlink(path: PathLike, callback: NoParamCallback): Unit
    Annotations
    @inline()
  266. def unlinkSync(path: PathLike): Unit
    Annotations
    @inline()
  267. def unwatchFile(filename: PathLike, listener: Function2[Stats, Stats, Unit]): Unit
    Annotations
    @inline()
  268. def unwatchFile(filename: PathLike): Unit
    Annotations
    @inline()
  269. def utimes(path: PathLike, atime: Double, mtime: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  270. def utimes(path: PathLike, atime: Double, mtime: Date, callback: NoParamCallback): Unit
    Annotations
    @inline()
  271. def utimes(path: PathLike, atime: Double, mtime: java.lang.String, callback: NoParamCallback): Unit
    Annotations
    @inline()
  272. def utimes(path: PathLike, atime: Date, mtime: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  273. def utimes(path: PathLike, atime: Date, mtime: Date, callback: NoParamCallback): Unit
    Annotations
    @inline()
  274. def utimes(path: PathLike, atime: Date, mtime: java.lang.String, callback: NoParamCallback): Unit
    Annotations
    @inline()
  275. def utimes(path: PathLike, atime: java.lang.String, mtime: Double, callback: NoParamCallback): Unit
    Annotations
    @inline()
  276. def utimes(path: PathLike, atime: java.lang.String, mtime: Date, callback: NoParamCallback): Unit
    Annotations
    @inline()
  277. def utimes(path: PathLike, atime: java.lang.String, mtime: java.lang.String, callback: NoParamCallback): Unit
    Annotations
    @inline()
  278. def utimesSync(path: PathLike, atime: Double, mtime: Double): Unit
    Annotations
    @inline()
  279. def utimesSync(path: PathLike, atime: Double, mtime: Date): Unit
    Annotations
    @inline()
  280. def utimesSync(path: PathLike, atime: Double, mtime: java.lang.String): Unit
    Annotations
    @inline()
  281. def utimesSync(path: PathLike, atime: Date, mtime: Double): Unit
    Annotations
    @inline()
  282. def utimesSync(path: PathLike, atime: Date, mtime: Date): Unit
    Annotations
    @inline()
  283. def utimesSync(path: PathLike, atime: Date, mtime: java.lang.String): Unit
    Annotations
    @inline()
  284. def utimesSync(path: PathLike, atime: java.lang.String, mtime: Double): Unit
    Annotations
    @inline()
  285. def utimesSync(path: PathLike, atime: java.lang.String, mtime: Date): Unit
    Annotations
    @inline()
  286. def utimesSync(path: PathLike, atime: java.lang.String, mtime: java.lang.String): Unit
    Annotations
    @inline()
  287. def watch(filename: PathLike, options: Unit, listener: WatchListener[java.lang.String]): FSWatcher
    Annotations
    @inline()
  288. def watch(filename: PathLike, options: Null, listener: WatchListener[java.lang.String]): FSWatcher
    Annotations
    @inline()
  289. def watch(filename: PathLike, options: java.lang.String, listener: WatchListener[|[java.lang.String, Buffer]]): FSWatcher
    Annotations
    @inline()
  290. def watch(filename: PathLike, options: java.lang.String): FSWatcher
    Annotations
    @inline()
  291. def watch(filename: PathLike, options: WatchOptions, listener: WatchListener[|[Buffer, java.lang.String]]): FSWatcher
    Annotations
    @inline()
  292. def watch(filename: PathLike, options: WatchOptions): FSWatcher
    Annotations
    @inline()
  293. def watch(filename: PathLike, options: BufferEncoding, listener: WatchListener[java.lang.String]): FSWatcher
    Annotations
    @inline()
  294. def watch(filename: PathLike, options: BufferEncoding): FSWatcher
    Annotations
    @inline()
  295. def watch(filename: PathLike, options: WatchOptionsencodingbuffe, listener: WatchListener[Buffer]): FSWatcher
    Annotations
    @inline()
  296. def watch(filename: PathLike, options: WatchOptionsencodingbuffe): FSWatcher
    Annotations
    @inline()
  297. def watch(filename: PathLike, listener: WatchListener[java.lang.String]): FSWatcher
    Annotations
    @inline()
  298. def watch(filename: PathLike): FSWatcher
    Annotations
    @inline()
  299. def watchFile(filename: PathLike, options: Unit, listener: Function2[Stats, Stats, Unit]): Unit
    Annotations
    @inline()
  300. def watchFile(filename: PathLike, options: Interval, listener: Function2[Stats, Stats, Unit]): Unit
    Annotations
    @inline()
  301. def watchFile(filename: PathLike, listener: Function2[Stats, Stats, Unit]): Unit
    Annotations
    @inline()
  302. def watch_buffer(filename: PathLike, options: buffer_, listener: WatchListener[Buffer]): FSWatcher
    Annotations
    @inline()
  303. def watch_buffer(filename: PathLike, options: buffer_): FSWatcher
    Annotations
    @inline()
  304. def write(fd: Double, string: java.lang.String, position: Unit, encoding: Unit, callback: Function3[|[ErrnoException, Null], Double, java.lang.String, Unit]): Unit
    Annotations
    @inline()
  305. def write(fd: Double, string: java.lang.String, position: Unit, encoding: Null, callback: Function3[|[ErrnoException, Null], Double, java.lang.String, Unit]): Unit
    Annotations
    @inline()
  306. def write(fd: Double, string: java.lang.String, position: Unit, encoding: BufferEncoding, callback: Function3[|[ErrnoException, Null], Double, java.lang.String, Unit]): Unit
    Annotations
    @inline()
  307. def write(fd: Double, string: java.lang.String, position: Unit, callback: Function3[|[ErrnoException, Null], Double, java.lang.String, Unit]): Unit
    Annotations
    @inline()
  308. def write(fd: Double, string: java.lang.String, position: Null, encoding: Unit, callback: Function3[|[ErrnoException, Null], Double, java.lang.String, Unit]): Unit
    Annotations
    @inline()
  309. def write(fd: Double, string: java.lang.String, position: Null, encoding: Null, callback: Function3[|[ErrnoException, Null], Double, java.lang.String, Unit]): Unit
    Annotations
    @inline()
  310. def write(fd: Double, string: java.lang.String, position: Null, encoding: BufferEncoding, callback: Function3[|[ErrnoException, Null], Double, java.lang.String, Unit]): Unit
    Annotations
    @inline()
  311. def write(fd: Double, string: java.lang.String, position: Null, callback: Function3[|[ErrnoException, Null], Double, java.lang.String, Unit]): Unit
    Annotations
    @inline()
  312. def write(fd: Double, string: java.lang.String, position: Double, encoding: Unit, callback: Function3[|[ErrnoException, Null], Double, java.lang.String, Unit]): Unit
    Annotations
    @inline()
  313. def write(fd: Double, string: java.lang.String, position: Double, encoding: Null, callback: Function3[|[ErrnoException, Null], Double, java.lang.String, Unit]): Unit
    Annotations
    @inline()
  314. def write(fd: Double, string: java.lang.String, position: Double, encoding: BufferEncoding, callback: Function3[|[ErrnoException, Null], Double, java.lang.String, Unit]): Unit
    Annotations
    @inline()
  315. def write(fd: Double, string: java.lang.String, position: Double, callback: Function3[|[ErrnoException, Null], Double, java.lang.String, Unit]): Unit
    Annotations
    @inline()
  316. def write(fd: Double, string: java.lang.String, callback: Function3[|[ErrnoException, Null], Double, java.lang.String, Unit]): Unit
    Annotations
    @inline()
  317. def write(fd: Double, buffer: Uint8ClampedArray, offset: Unit, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  318. def write(fd: Double, buffer: Uint8ClampedArray, offset: Unit, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  319. def write(fd: Double, buffer: Uint8ClampedArray, offset: Unit, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  320. def write(fd: Double, buffer: Uint8ClampedArray, offset: Unit, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  321. def write(fd: Double, buffer: Uint8ClampedArray, offset: Unit, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  322. def write(fd: Double, buffer: Uint8ClampedArray, offset: Unit, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  323. def write(fd: Double, buffer: Uint8ClampedArray, offset: Unit, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  324. def write(fd: Double, buffer: Uint8ClampedArray, offset: Unit, length: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  325. def write(fd: Double, buffer: Uint8ClampedArray, offset: Unit, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  326. def write(fd: Double, buffer: Uint8ClampedArray, offset: Unit, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  327. def write(fd: Double, buffer: Uint8ClampedArray, offset: Unit, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  328. def write(fd: Double, buffer: Uint8ClampedArray, offset: Unit, length: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  329. def write(fd: Double, buffer: Uint8ClampedArray, offset: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  330. def write(fd: Double, buffer: Uint8ClampedArray, offset: Null, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  331. def write(fd: Double, buffer: Uint8ClampedArray, offset: Null, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  332. def write(fd: Double, buffer: Uint8ClampedArray, offset: Null, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  333. def write(fd: Double, buffer: Uint8ClampedArray, offset: Null, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  334. def write(fd: Double, buffer: Uint8ClampedArray, offset: Null, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  335. def write(fd: Double, buffer: Uint8ClampedArray, offset: Null, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  336. def write(fd: Double, buffer: Uint8ClampedArray, offset: Null, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  337. def write(fd: Double, buffer: Uint8ClampedArray, offset: Null, length: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  338. def write(fd: Double, buffer: Uint8ClampedArray, offset: Null, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  339. def write(fd: Double, buffer: Uint8ClampedArray, offset: Null, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  340. def write(fd: Double, buffer: Uint8ClampedArray, offset: Null, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  341. def write(fd: Double, buffer: Uint8ClampedArray, offset: Null, length: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  342. def write(fd: Double, buffer: Uint8ClampedArray, offset: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  343. def write(fd: Double, buffer: Uint8ClampedArray, offset: Double, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  344. def write(fd: Double, buffer: Uint8ClampedArray, offset: Double, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  345. def write(fd: Double, buffer: Uint8ClampedArray, offset: Double, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  346. def write(fd: Double, buffer: Uint8ClampedArray, offset: Double, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  347. def write(fd: Double, buffer: Uint8ClampedArray, offset: Double, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  348. def write(fd: Double, buffer: Uint8ClampedArray, offset: Double, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  349. def write(fd: Double, buffer: Uint8ClampedArray, offset: Double, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  350. def write(fd: Double, buffer: Uint8ClampedArray, offset: Double, length: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  351. def write(fd: Double, buffer: Uint8ClampedArray, offset: Double, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  352. def write(fd: Double, buffer: Uint8ClampedArray, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  353. def write(fd: Double, buffer: Uint8ClampedArray, offset: Double, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  354. def write(fd: Double, buffer: Uint8ClampedArray, offset: Double, length: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  355. def write(fd: Double, buffer: Uint8ClampedArray, offset: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  356. def write(fd: Double, buffer: Uint8ClampedArray, callback: Function3[|[ErrnoException, Null], Double, Uint8ClampedArray, Unit]): Unit
    Annotations
    @inline()
  357. def write(fd: Double, buffer: Uint8Array, offset: Unit, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  358. def write(fd: Double, buffer: Uint8Array, offset: Unit, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  359. def write(fd: Double, buffer: Uint8Array, offset: Unit, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  360. def write(fd: Double, buffer: Uint8Array, offset: Unit, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  361. def write(fd: Double, buffer: Uint8Array, offset: Unit, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  362. def write(fd: Double, buffer: Uint8Array, offset: Unit, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  363. def write(fd: Double, buffer: Uint8Array, offset: Unit, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  364. def write(fd: Double, buffer: Uint8Array, offset: Unit, length: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  365. def write(fd: Double, buffer: Uint8Array, offset: Unit, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  366. def write(fd: Double, buffer: Uint8Array, offset: Unit, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  367. def write(fd: Double, buffer: Uint8Array, offset: Unit, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  368. def write(fd: Double, buffer: Uint8Array, offset: Unit, length: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  369. def write(fd: Double, buffer: Uint8Array, offset: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  370. def write(fd: Double, buffer: Uint8Array, offset: Null, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  371. def write(fd: Double, buffer: Uint8Array, offset: Null, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  372. def write(fd: Double, buffer: Uint8Array, offset: Null, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  373. def write(fd: Double, buffer: Uint8Array, offset: Null, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  374. def write(fd: Double, buffer: Uint8Array, offset: Null, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  375. def write(fd: Double, buffer: Uint8Array, offset: Null, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  376. def write(fd: Double, buffer: Uint8Array, offset: Null, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  377. def write(fd: Double, buffer: Uint8Array, offset: Null, length: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  378. def write(fd: Double, buffer: Uint8Array, offset: Null, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  379. def write(fd: Double, buffer: Uint8Array, offset: Null, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  380. def write(fd: Double, buffer: Uint8Array, offset: Null, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  381. def write(fd: Double, buffer: Uint8Array, offset: Null, length: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  382. def write(fd: Double, buffer: Uint8Array, offset: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  383. def write(fd: Double, buffer: Uint8Array, offset: Double, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  384. def write(fd: Double, buffer: Uint8Array, offset: Double, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  385. def write(fd: Double, buffer: Uint8Array, offset: Double, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  386. def write(fd: Double, buffer: Uint8Array, offset: Double, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  387. def write(fd: Double, buffer: Uint8Array, offset: Double, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  388. def write(fd: Double, buffer: Uint8Array, offset: Double, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  389. def write(fd: Double, buffer: Uint8Array, offset: Double, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  390. def write(fd: Double, buffer: Uint8Array, offset: Double, length: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  391. def write(fd: Double, buffer: Uint8Array, offset: Double, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  392. def write(fd: Double, buffer: Uint8Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  393. def write(fd: Double, buffer: Uint8Array, offset: Double, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  394. def write(fd: Double, buffer: Uint8Array, offset: Double, length: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  395. def write(fd: Double, buffer: Uint8Array, offset: Double, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  396. def write(fd: Double, buffer: Uint8Array, callback: Function3[|[ErrnoException, Null], Double, Uint8Array, Unit]): Unit
    Annotations
    @inline()
  397. def write(fd: Double, buffer: Uint32Array, offset: Unit, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  398. def write(fd: Double, buffer: Uint32Array, offset: Unit, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  399. def write(fd: Double, buffer: Uint32Array, offset: Unit, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  400. def write(fd: Double, buffer: Uint32Array, offset: Unit, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  401. def write(fd: Double, buffer: Uint32Array, offset: Unit, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  402. def write(fd: Double, buffer: Uint32Array, offset: Unit, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  403. def write(fd: Double, buffer: Uint32Array, offset: Unit, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  404. def write(fd: Double, buffer: Uint32Array, offset: Unit, length: Null, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  405. def write(fd: Double, buffer: Uint32Array, offset: Unit, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  406. def write(fd: Double, buffer: Uint32Array, offset: Unit, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  407. def write(fd: Double, buffer: Uint32Array, offset: Unit, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  408. def write(fd: Double, buffer: Uint32Array, offset: Unit, length: Double, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  409. def write(fd: Double, buffer: Uint32Array, offset: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  410. def write(fd: Double, buffer: Uint32Array, offset: Null, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  411. def write(fd: Double, buffer: Uint32Array, offset: Null, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  412. def write(fd: Double, buffer: Uint32Array, offset: Null, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  413. def write(fd: Double, buffer: Uint32Array, offset: Null, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  414. def write(fd: Double, buffer: Uint32Array, offset: Null, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  415. def write(fd: Double, buffer: Uint32Array, offset: Null, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  416. def write(fd: Double, buffer: Uint32Array, offset: Null, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  417. def write(fd: Double, buffer: Uint32Array, offset: Null, length: Null, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  418. def write(fd: Double, buffer: Uint32Array, offset: Null, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  419. def write(fd: Double, buffer: Uint32Array, offset: Null, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  420. def write(fd: Double, buffer: Uint32Array, offset: Null, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  421. def write(fd: Double, buffer: Uint32Array, offset: Null, length: Double, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  422. def write(fd: Double, buffer: Uint32Array, offset: Null, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  423. def write(fd: Double, buffer: Uint32Array, offset: Double, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  424. def write(fd: Double, buffer: Uint32Array, offset: Double, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  425. def write(fd: Double, buffer: Uint32Array, offset: Double, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  426. def write(fd: Double, buffer: Uint32Array, offset: Double, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  427. def write(fd: Double, buffer: Uint32Array, offset: Double, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  428. def write(fd: Double, buffer: Uint32Array, offset: Double, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  429. def write(fd: Double, buffer: Uint32Array, offset: Double, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  430. def write(fd: Double, buffer: Uint32Array, offset: Double, length: Null, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  431. def write(fd: Double, buffer: Uint32Array, offset: Double, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  432. def write(fd: Double, buffer: Uint32Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  433. def write(fd: Double, buffer: Uint32Array, offset: Double, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  434. def write(fd: Double, buffer: Uint32Array, offset: Double, length: Double, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  435. def write(fd: Double, buffer: Uint32Array, offset: Double, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  436. def write(fd: Double, buffer: Uint32Array, callback: Function3[|[ErrnoException, Null], Double, Uint32Array, Unit]): Unit
    Annotations
    @inline()
  437. def write(fd: Double, buffer: Uint16Array, offset: Unit, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  438. def write(fd: Double, buffer: Uint16Array, offset: Unit, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  439. def write(fd: Double, buffer: Uint16Array, offset: Unit, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  440. def write(fd: Double, buffer: Uint16Array, offset: Unit, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  441. def write(fd: Double, buffer: Uint16Array, offset: Unit, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  442. def write(fd: Double, buffer: Uint16Array, offset: Unit, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  443. def write(fd: Double, buffer: Uint16Array, offset: Unit, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  444. def write(fd: Double, buffer: Uint16Array, offset: Unit, length: Null, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  445. def write(fd: Double, buffer: Uint16Array, offset: Unit, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  446. def write(fd: Double, buffer: Uint16Array, offset: Unit, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  447. def write(fd: Double, buffer: Uint16Array, offset: Unit, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  448. def write(fd: Double, buffer: Uint16Array, offset: Unit, length: Double, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  449. def write(fd: Double, buffer: Uint16Array, offset: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  450. def write(fd: Double, buffer: Uint16Array, offset: Null, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  451. def write(fd: Double, buffer: Uint16Array, offset: Null, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  452. def write(fd: Double, buffer: Uint16Array, offset: Null, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  453. def write(fd: Double, buffer: Uint16Array, offset: Null, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  454. def write(fd: Double, buffer: Uint16Array, offset: Null, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  455. def write(fd: Double, buffer: Uint16Array, offset: Null, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  456. def write(fd: Double, buffer: Uint16Array, offset: Null, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  457. def write(fd: Double, buffer: Uint16Array, offset: Null, length: Null, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  458. def write(fd: Double, buffer: Uint16Array, offset: Null, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  459. def write(fd: Double, buffer: Uint16Array, offset: Null, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  460. def write(fd: Double, buffer: Uint16Array, offset: Null, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  461. def write(fd: Double, buffer: Uint16Array, offset: Null, length: Double, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  462. def write(fd: Double, buffer: Uint16Array, offset: Null, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  463. def write(fd: Double, buffer: Uint16Array, offset: Double, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  464. def write(fd: Double, buffer: Uint16Array, offset: Double, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  465. def write(fd: Double, buffer: Uint16Array, offset: Double, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  466. def write(fd: Double, buffer: Uint16Array, offset: Double, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  467. def write(fd: Double, buffer: Uint16Array, offset: Double, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  468. def write(fd: Double, buffer: Uint16Array, offset: Double, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  469. def write(fd: Double, buffer: Uint16Array, offset: Double, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  470. def write(fd: Double, buffer: Uint16Array, offset: Double, length: Null, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  471. def write(fd: Double, buffer: Uint16Array, offset: Double, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  472. def write(fd: Double, buffer: Uint16Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  473. def write(fd: Double, buffer: Uint16Array, offset: Double, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  474. def write(fd: Double, buffer: Uint16Array, offset: Double, length: Double, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  475. def write(fd: Double, buffer: Uint16Array, offset: Double, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  476. def write(fd: Double, buffer: Uint16Array, callback: Function3[|[ErrnoException, Null], Double, Uint16Array, Unit]): Unit
    Annotations
    @inline()
  477. def write(fd: Double, buffer: Int8Array, offset: Unit, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  478. def write(fd: Double, buffer: Int8Array, offset: Unit, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  479. def write(fd: Double, buffer: Int8Array, offset: Unit, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  480. def write(fd: Double, buffer: Int8Array, offset: Unit, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  481. def write(fd: Double, buffer: Int8Array, offset: Unit, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  482. def write(fd: Double, buffer: Int8Array, offset: Unit, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  483. def write(fd: Double, buffer: Int8Array, offset: Unit, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  484. def write(fd: Double, buffer: Int8Array, offset: Unit, length: Null, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  485. def write(fd: Double, buffer: Int8Array, offset: Unit, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  486. def write(fd: Double, buffer: Int8Array, offset: Unit, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  487. def write(fd: Double, buffer: Int8Array, offset: Unit, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  488. def write(fd: Double, buffer: Int8Array, offset: Unit, length: Double, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  489. def write(fd: Double, buffer: Int8Array, offset: Unit, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  490. def write(fd: Double, buffer: Int8Array, offset: Null, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  491. def write(fd: Double, buffer: Int8Array, offset: Null, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  492. def write(fd: Double, buffer: Int8Array, offset: Null, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  493. def write(fd: Double, buffer: Int8Array, offset: Null, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  494. def write(fd: Double, buffer: Int8Array, offset: Null, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  495. def write(fd: Double, buffer: Int8Array, offset: Null, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  496. def write(fd: Double, buffer: Int8Array, offset: Null, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  497. def write(fd: Double, buffer: Int8Array, offset: Null, length: Null, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  498. def write(fd: Double, buffer: Int8Array, offset: Null, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  499. def write(fd: Double, buffer: Int8Array, offset: Null, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  500. def write(fd: Double, buffer: Int8Array, offset: Null, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  501. def write(fd: Double, buffer: Int8Array, offset: Null, length: Double, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  502. def write(fd: Double, buffer: Int8Array, offset: Null, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  503. def write(fd: Double, buffer: Int8Array, offset: Double, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  504. def write(fd: Double, buffer: Int8Array, offset: Double, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  505. def write(fd: Double, buffer: Int8Array, offset: Double, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  506. def write(fd: Double, buffer: Int8Array, offset: Double, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  507. def write(fd: Double, buffer: Int8Array, offset: Double, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  508. def write(fd: Double, buffer: Int8Array, offset: Double, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  509. def write(fd: Double, buffer: Int8Array, offset: Double, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  510. def write(fd: Double, buffer: Int8Array, offset: Double, length: Null, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  511. def write(fd: Double, buffer: Int8Array, offset: Double, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  512. def write(fd: Double, buffer: Int8Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  513. def write(fd: Double, buffer: Int8Array, offset: Double, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  514. def write(fd: Double, buffer: Int8Array, offset: Double, length: Double, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  515. def write(fd: Double, buffer: Int8Array, offset: Double, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  516. def write(fd: Double, buffer: Int8Array, callback: Function3[|[ErrnoException, Null], Double, Int8Array, Unit]): Unit
    Annotations
    @inline()
  517. def write(fd: Double, buffer: Int32Array, offset: Unit, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  518. def write(fd: Double, buffer: Int32Array, offset: Unit, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  519. def write(fd: Double, buffer: Int32Array, offset: Unit, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  520. def write(fd: Double, buffer: Int32Array, offset: Unit, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  521. def write(fd: Double, buffer: Int32Array, offset: Unit, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  522. def write(fd: Double, buffer: Int32Array, offset: Unit, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  523. def write(fd: Double, buffer: Int32Array, offset: Unit, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  524. def write(fd: Double, buffer: Int32Array, offset: Unit, length: Null, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  525. def write(fd: Double, buffer: Int32Array, offset: Unit, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  526. def write(fd: Double, buffer: Int32Array, offset: Unit, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  527. def write(fd: Double, buffer: Int32Array, offset: Unit, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  528. def write(fd: Double, buffer: Int32Array, offset: Unit, length: Double, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  529. def write(fd: Double, buffer: Int32Array, offset: Unit, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  530. def write(fd: Double, buffer: Int32Array, offset: Null, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  531. def write(fd: Double, buffer: Int32Array, offset: Null, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  532. def write(fd: Double, buffer: Int32Array, offset: Null, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  533. def write(fd: Double, buffer: Int32Array, offset: Null, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  534. def write(fd: Double, buffer: Int32Array, offset: Null, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  535. def write(fd: Double, buffer: Int32Array, offset: Null, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  536. def write(fd: Double, buffer: Int32Array, offset: Null, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  537. def write(fd: Double, buffer: Int32Array, offset: Null, length: Null, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  538. def write(fd: Double, buffer: Int32Array, offset: Null, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  539. def write(fd: Double, buffer: Int32Array, offset: Null, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  540. def write(fd: Double, buffer: Int32Array, offset: Null, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  541. def write(fd: Double, buffer: Int32Array, offset: Null, length: Double, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  542. def write(fd: Double, buffer: Int32Array, offset: Null, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  543. def write(fd: Double, buffer: Int32Array, offset: Double, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  544. def write(fd: Double, buffer: Int32Array, offset: Double, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  545. def write(fd: Double, buffer: Int32Array, offset: Double, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  546. def write(fd: Double, buffer: Int32Array, offset: Double, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  547. def write(fd: Double, buffer: Int32Array, offset: Double, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  548. def write(fd: Double, buffer: Int32Array, offset: Double, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  549. def write(fd: Double, buffer: Int32Array, offset: Double, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  550. def write(fd: Double, buffer: Int32Array, offset: Double, length: Null, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  551. def write(fd: Double, buffer: Int32Array, offset: Double, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  552. def write(fd: Double, buffer: Int32Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  553. def write(fd: Double, buffer: Int32Array, offset: Double, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  554. def write(fd: Double, buffer: Int32Array, offset: Double, length: Double, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  555. def write(fd: Double, buffer: Int32Array, offset: Double, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  556. def write(fd: Double, buffer: Int32Array, callback: Function3[|[ErrnoException, Null], Double, Int32Array, Unit]): Unit
    Annotations
    @inline()
  557. def write(fd: Double, buffer: Int16Array, offset: Unit, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  558. def write(fd: Double, buffer: Int16Array, offset: Unit, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  559. def write(fd: Double, buffer: Int16Array, offset: Unit, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  560. def write(fd: Double, buffer: Int16Array, offset: Unit, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  561. def write(fd: Double, buffer: Int16Array, offset: Unit, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  562. def write(fd: Double, buffer: Int16Array, offset: Unit, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  563. def write(fd: Double, buffer: Int16Array, offset: Unit, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  564. def write(fd: Double, buffer: Int16Array, offset: Unit, length: Null, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  565. def write(fd: Double, buffer: Int16Array, offset: Unit, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  566. def write(fd: Double, buffer: Int16Array, offset: Unit, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  567. def write(fd: Double, buffer: Int16Array, offset: Unit, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  568. def write(fd: Double, buffer: Int16Array, offset: Unit, length: Double, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  569. def write(fd: Double, buffer: Int16Array, offset: Unit, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  570. def write(fd: Double, buffer: Int16Array, offset: Null, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  571. def write(fd: Double, buffer: Int16Array, offset: Null, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  572. def write(fd: Double, buffer: Int16Array, offset: Null, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  573. def write(fd: Double, buffer: Int16Array, offset: Null, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  574. def write(fd: Double, buffer: Int16Array, offset: Null, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  575. def write(fd: Double, buffer: Int16Array, offset: Null, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  576. def write(fd: Double, buffer: Int16Array, offset: Null, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  577. def write(fd: Double, buffer: Int16Array, offset: Null, length: Null, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  578. def write(fd: Double, buffer: Int16Array, offset: Null, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  579. def write(fd: Double, buffer: Int16Array, offset: Null, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  580. def write(fd: Double, buffer: Int16Array, offset: Null, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  581. def write(fd: Double, buffer: Int16Array, offset: Null, length: Double, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  582. def write(fd: Double, buffer: Int16Array, offset: Null, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  583. def write(fd: Double, buffer: Int16Array, offset: Double, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  584. def write(fd: Double, buffer: Int16Array, offset: Double, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  585. def write(fd: Double, buffer: Int16Array, offset: Double, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  586. def write(fd: Double, buffer: Int16Array, offset: Double, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  587. def write(fd: Double, buffer: Int16Array, offset: Double, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  588. def write(fd: Double, buffer: Int16Array, offset: Double, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  589. def write(fd: Double, buffer: Int16Array, offset: Double, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  590. def write(fd: Double, buffer: Int16Array, offset: Double, length: Null, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  591. def write(fd: Double, buffer: Int16Array, offset: Double, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  592. def write(fd: Double, buffer: Int16Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  593. def write(fd: Double, buffer: Int16Array, offset: Double, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  594. def write(fd: Double, buffer: Int16Array, offset: Double, length: Double, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  595. def write(fd: Double, buffer: Int16Array, offset: Double, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  596. def write(fd: Double, buffer: Int16Array, callback: Function3[|[ErrnoException, Null], Double, Int16Array, Unit]): Unit
    Annotations
    @inline()
  597. def write(fd: Double, buffer: Float64Array, offset: Unit, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  598. def write(fd: Double, buffer: Float64Array, offset: Unit, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  599. def write(fd: Double, buffer: Float64Array, offset: Unit, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  600. def write(fd: Double, buffer: Float64Array, offset: Unit, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  601. def write(fd: Double, buffer: Float64Array, offset: Unit, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  602. def write(fd: Double, buffer: Float64Array, offset: Unit, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  603. def write(fd: Double, buffer: Float64Array, offset: Unit, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  604. def write(fd: Double, buffer: Float64Array, offset: Unit, length: Null, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  605. def write(fd: Double, buffer: Float64Array, offset: Unit, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  606. def write(fd: Double, buffer: Float64Array, offset: Unit, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  607. def write(fd: Double, buffer: Float64Array, offset: Unit, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  608. def write(fd: Double, buffer: Float64Array, offset: Unit, length: Double, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  609. def write(fd: Double, buffer: Float64Array, offset: Unit, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  610. def write(fd: Double, buffer: Float64Array, offset: Null, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  611. def write(fd: Double, buffer: Float64Array, offset: Null, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  612. def write(fd: Double, buffer: Float64Array, offset: Null, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  613. def write(fd: Double, buffer: Float64Array, offset: Null, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  614. def write(fd: Double, buffer: Float64Array, offset: Null, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  615. def write(fd: Double, buffer: Float64Array, offset: Null, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  616. def write(fd: Double, buffer: Float64Array, offset: Null, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  617. def write(fd: Double, buffer: Float64Array, offset: Null, length: Null, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  618. def write(fd: Double, buffer: Float64Array, offset: Null, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  619. def write(fd: Double, buffer: Float64Array, offset: Null, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  620. def write(fd: Double, buffer: Float64Array, offset: Null, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  621. def write(fd: Double, buffer: Float64Array, offset: Null, length: Double, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  622. def write(fd: Double, buffer: Float64Array, offset: Null, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  623. def write(fd: Double, buffer: Float64Array, offset: Double, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  624. def write(fd: Double, buffer: Float64Array, offset: Double, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  625. def write(fd: Double, buffer: Float64Array, offset: Double, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  626. def write(fd: Double, buffer: Float64Array, offset: Double, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  627. def write(fd: Double, buffer: Float64Array, offset: Double, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  628. def write(fd: Double, buffer: Float64Array, offset: Double, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  629. def write(fd: Double, buffer: Float64Array, offset: Double, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  630. def write(fd: Double, buffer: Float64Array, offset: Double, length: Null, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  631. def write(fd: Double, buffer: Float64Array, offset: Double, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  632. def write(fd: Double, buffer: Float64Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  633. def write(fd: Double, buffer: Float64Array, offset: Double, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  634. def write(fd: Double, buffer: Float64Array, offset: Double, length: Double, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  635. def write(fd: Double, buffer: Float64Array, offset: Double, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  636. def write(fd: Double, buffer: Float64Array, callback: Function3[|[ErrnoException, Null], Double, Float64Array, Unit]): Unit
    Annotations
    @inline()
  637. def write(fd: Double, buffer: Float32Array, offset: Unit, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  638. def write(fd: Double, buffer: Float32Array, offset: Unit, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  639. def write(fd: Double, buffer: Float32Array, offset: Unit, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  640. def write(fd: Double, buffer: Float32Array, offset: Unit, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  641. def write(fd: Double, buffer: Float32Array, offset: Unit, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  642. def write(fd: Double, buffer: Float32Array, offset: Unit, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  643. def write(fd: Double, buffer: Float32Array, offset: Unit, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  644. def write(fd: Double, buffer: Float32Array, offset: Unit, length: Null, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  645. def write(fd: Double, buffer: Float32Array, offset: Unit, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  646. def write(fd: Double, buffer: Float32Array, offset: Unit, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  647. def write(fd: Double, buffer: Float32Array, offset: Unit, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  648. def write(fd: Double, buffer: Float32Array, offset: Unit, length: Double, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  649. def write(fd: Double, buffer: Float32Array, offset: Unit, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  650. def write(fd: Double, buffer: Float32Array, offset: Null, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  651. def write(fd: Double, buffer: Float32Array, offset: Null, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  652. def write(fd: Double, buffer: Float32Array, offset: Null, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  653. def write(fd: Double, buffer: Float32Array, offset: Null, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  654. def write(fd: Double, buffer: Float32Array, offset: Null, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  655. def write(fd: Double, buffer: Float32Array, offset: Null, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  656. def write(fd: Double, buffer: Float32Array, offset: Null, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  657. def write(fd: Double, buffer: Float32Array, offset: Null, length: Null, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  658. def write(fd: Double, buffer: Float32Array, offset: Null, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  659. def write(fd: Double, buffer: Float32Array, offset: Null, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  660. def write(fd: Double, buffer: Float32Array, offset: Null, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  661. def write(fd: Double, buffer: Float32Array, offset: Null, length: Double, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  662. def write(fd: Double, buffer: Float32Array, offset: Null, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  663. def write(fd: Double, buffer: Float32Array, offset: Double, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  664. def write(fd: Double, buffer: Float32Array, offset: Double, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  665. def write(fd: Double, buffer: Float32Array, offset: Double, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  666. def write(fd: Double, buffer: Float32Array, offset: Double, length: Unit, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  667. def write(fd: Double, buffer: Float32Array, offset: Double, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  668. def write(fd: Double, buffer: Float32Array, offset: Double, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  669. def write(fd: Double, buffer: Float32Array, offset: Double, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  670. def write(fd: Double, buffer: Float32Array, offset: Double, length: Null, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  671. def write(fd: Double, buffer: Float32Array, offset: Double, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  672. def write(fd: Double, buffer: Float32Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  673. def write(fd: Double, buffer: Float32Array, offset: Double, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  674. def write(fd: Double, buffer: Float32Array, offset: Double, length: Double, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  675. def write(fd: Double, buffer: Float32Array, offset: Double, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  676. def write(fd: Double, buffer: Float32Array, callback: Function3[|[ErrnoException, Null], Double, Float32Array, Unit]): Unit
    Annotations
    @inline()
  677. def write(fd: Double, buffer: DataView, offset: Unit, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  678. def write(fd: Double, buffer: DataView, offset: Unit, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  679. def write(fd: Double, buffer: DataView, offset: Unit, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  680. def write(fd: Double, buffer: DataView, offset: Unit, length: Unit, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  681. def write(fd: Double, buffer: DataView, offset: Unit, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  682. def write(fd: Double, buffer: DataView, offset: Unit, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  683. def write(fd: Double, buffer: DataView, offset: Unit, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  684. def write(fd: Double, buffer: DataView, offset: Unit, length: Null, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  685. def write(fd: Double, buffer: DataView, offset: Unit, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  686. def write(fd: Double, buffer: DataView, offset: Unit, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  687. def write(fd: Double, buffer: DataView, offset: Unit, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  688. def write(fd: Double, buffer: DataView, offset: Unit, length: Double, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  689. def write(fd: Double, buffer: DataView, offset: Unit, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  690. def write(fd: Double, buffer: DataView, offset: Null, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  691. def write(fd: Double, buffer: DataView, offset: Null, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  692. def write(fd: Double, buffer: DataView, offset: Null, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  693. def write(fd: Double, buffer: DataView, offset: Null, length: Unit, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  694. def write(fd: Double, buffer: DataView, offset: Null, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  695. def write(fd: Double, buffer: DataView, offset: Null, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  696. def write(fd: Double, buffer: DataView, offset: Null, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  697. def write(fd: Double, buffer: DataView, offset: Null, length: Null, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  698. def write(fd: Double, buffer: DataView, offset: Null, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  699. def write(fd: Double, buffer: DataView, offset: Null, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  700. def write(fd: Double, buffer: DataView, offset: Null, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  701. def write(fd: Double, buffer: DataView, offset: Null, length: Double, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  702. def write(fd: Double, buffer: DataView, offset: Null, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  703. def write(fd: Double, buffer: DataView, offset: Double, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  704. def write(fd: Double, buffer: DataView, offset: Double, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  705. def write(fd: Double, buffer: DataView, offset: Double, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  706. def write(fd: Double, buffer: DataView, offset: Double, length: Unit, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  707. def write(fd: Double, buffer: DataView, offset: Double, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  708. def write(fd: Double, buffer: DataView, offset: Double, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  709. def write(fd: Double, buffer: DataView, offset: Double, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  710. def write(fd: Double, buffer: DataView, offset: Double, length: Null, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  711. def write(fd: Double, buffer: DataView, offset: Double, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  712. def write(fd: Double, buffer: DataView, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  713. def write(fd: Double, buffer: DataView, offset: Double, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  714. def write(fd: Double, buffer: DataView, offset: Double, length: Double, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  715. def write(fd: Double, buffer: DataView, offset: Double, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  716. def write(fd: Double, buffer: DataView, callback: Function3[|[ErrnoException, Null], Double, DataView, Unit]): Unit
    Annotations
    @inline()
  717. def write(fd: Double, buffer: BigUint64Array, offset: Unit, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  718. def write(fd: Double, buffer: BigUint64Array, offset: Unit, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  719. def write(fd: Double, buffer: BigUint64Array, offset: Unit, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  720. def write(fd: Double, buffer: BigUint64Array, offset: Unit, length: Unit, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  721. def write(fd: Double, buffer: BigUint64Array, offset: Unit, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  722. def write(fd: Double, buffer: BigUint64Array, offset: Unit, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  723. def write(fd: Double, buffer: BigUint64Array, offset: Unit, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  724. def write(fd: Double, buffer: BigUint64Array, offset: Unit, length: Null, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  725. def write(fd: Double, buffer: BigUint64Array, offset: Unit, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  726. def write(fd: Double, buffer: BigUint64Array, offset: Unit, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  727. def write(fd: Double, buffer: BigUint64Array, offset: Unit, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  728. def write(fd: Double, buffer: BigUint64Array, offset: Unit, length: Double, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  729. def write(fd: Double, buffer: BigUint64Array, offset: Unit, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  730. def write(fd: Double, buffer: BigUint64Array, offset: Null, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  731. def write(fd: Double, buffer: BigUint64Array, offset: Null, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  732. def write(fd: Double, buffer: BigUint64Array, offset: Null, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  733. def write(fd: Double, buffer: BigUint64Array, offset: Null, length: Unit, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  734. def write(fd: Double, buffer: BigUint64Array, offset: Null, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  735. def write(fd: Double, buffer: BigUint64Array, offset: Null, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  736. def write(fd: Double, buffer: BigUint64Array, offset: Null, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  737. def write(fd: Double, buffer: BigUint64Array, offset: Null, length: Null, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  738. def write(fd: Double, buffer: BigUint64Array, offset: Null, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  739. def write(fd: Double, buffer: BigUint64Array, offset: Null, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  740. def write(fd: Double, buffer: BigUint64Array, offset: Null, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  741. def write(fd: Double, buffer: BigUint64Array, offset: Null, length: Double, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  742. def write(fd: Double, buffer: BigUint64Array, offset: Null, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  743. def write(fd: Double, buffer: BigUint64Array, offset: Double, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  744. def write(fd: Double, buffer: BigUint64Array, offset: Double, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  745. def write(fd: Double, buffer: BigUint64Array, offset: Double, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  746. def write(fd: Double, buffer: BigUint64Array, offset: Double, length: Unit, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  747. def write(fd: Double, buffer: BigUint64Array, offset: Double, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  748. def write(fd: Double, buffer: BigUint64Array, offset: Double, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  749. def write(fd: Double, buffer: BigUint64Array, offset: Double, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  750. def write(fd: Double, buffer: BigUint64Array, offset: Double, length: Null, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  751. def write(fd: Double, buffer: BigUint64Array, offset: Double, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  752. def write(fd: Double, buffer: BigUint64Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  753. def write(fd: Double, buffer: BigUint64Array, offset: Double, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  754. def write(fd: Double, buffer: BigUint64Array, offset: Double, length: Double, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  755. def write(fd: Double, buffer: BigUint64Array, offset: Double, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  756. def write(fd: Double, buffer: BigUint64Array, callback: Function3[|[ErrnoException, Null], Double, BigUint64Array, Unit]): Unit
    Annotations
    @inline()
  757. def write(fd: Double, buffer: BigInt64Array, offset: Unit, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  758. def write(fd: Double, buffer: BigInt64Array, offset: Unit, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  759. def write(fd: Double, buffer: BigInt64Array, offset: Unit, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  760. def write(fd: Double, buffer: BigInt64Array, offset: Unit, length: Unit, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  761. def write(fd: Double, buffer: BigInt64Array, offset: Unit, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  762. def write(fd: Double, buffer: BigInt64Array, offset: Unit, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  763. def write(fd: Double, buffer: BigInt64Array, offset: Unit, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  764. def write(fd: Double, buffer: BigInt64Array, offset: Unit, length: Null, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  765. def write(fd: Double, buffer: BigInt64Array, offset: Unit, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  766. def write(fd: Double, buffer: BigInt64Array, offset: Unit, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  767. def write(fd: Double, buffer: BigInt64Array, offset: Unit, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  768. def write(fd: Double, buffer: BigInt64Array, offset: Unit, length: Double, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  769. def write(fd: Double, buffer: BigInt64Array, offset: Unit, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  770. def write(fd: Double, buffer: BigInt64Array, offset: Null, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  771. def write(fd: Double, buffer: BigInt64Array, offset: Null, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  772. def write(fd: Double, buffer: BigInt64Array, offset: Null, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  773. def write(fd: Double, buffer: BigInt64Array, offset: Null, length: Unit, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  774. def write(fd: Double, buffer: BigInt64Array, offset: Null, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  775. def write(fd: Double, buffer: BigInt64Array, offset: Null, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  776. def write(fd: Double, buffer: BigInt64Array, offset: Null, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  777. def write(fd: Double, buffer: BigInt64Array, offset: Null, length: Null, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  778. def write(fd: Double, buffer: BigInt64Array, offset: Null, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  779. def write(fd: Double, buffer: BigInt64Array, offset: Null, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  780. def write(fd: Double, buffer: BigInt64Array, offset: Null, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  781. def write(fd: Double, buffer: BigInt64Array, offset: Null, length: Double, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  782. def write(fd: Double, buffer: BigInt64Array, offset: Null, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  783. def write(fd: Double, buffer: BigInt64Array, offset: Double, length: Unit, position: Unit, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  784. def write(fd: Double, buffer: BigInt64Array, offset: Double, length: Unit, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  785. def write(fd: Double, buffer: BigInt64Array, offset: Double, length: Unit, position: Double, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  786. def write(fd: Double, buffer: BigInt64Array, offset: Double, length: Unit, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  787. def write(fd: Double, buffer: BigInt64Array, offset: Double, length: Null, position: Unit, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  788. def write(fd: Double, buffer: BigInt64Array, offset: Double, length: Null, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  789. def write(fd: Double, buffer: BigInt64Array, offset: Double, length: Null, position: Double, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  790. def write(fd: Double, buffer: BigInt64Array, offset: Double, length: Null, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  791. def write(fd: Double, buffer: BigInt64Array, offset: Double, length: Double, position: Unit, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  792. def write(fd: Double, buffer: BigInt64Array, offset: Double, length: Double, position: Null, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  793. def write(fd: Double, buffer: BigInt64Array, offset: Double, length: Double, position: Double, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  794. def write(fd: Double, buffer: BigInt64Array, offset: Double, length: Double, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  795. def write(fd: Double, buffer: BigInt64Array, offset: Double, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  796. def write(fd: Double, buffer: BigInt64Array, callback: Function3[|[ErrnoException, Null], Double, BigInt64Array, Unit]): Unit
    Annotations
    @inline()
  797. def writeFile(path: Double, data: java.lang.String, options: WriteFileOptions, callback: NoParamCallback): Unit
    Annotations
    @inline()
  798. def writeFile(path: Double, data: java.lang.String, callback: NoParamCallback): Unit
    Annotations
    @inline()
  799. def writeFile(path: Double, data: ArrayBufferView, options: WriteFileOptions, callback: NoParamCallback): Unit
    Annotations
    @inline()
  800. def writeFile(path: Double, data: ArrayBufferView, callback: NoParamCallback): Unit
    Annotations
    @inline()
  801. def writeFile(path: PathLike, data: java.lang.String, options: WriteFileOptions, callback: NoParamCallback): Unit
    Annotations
    @inline()
  802. def writeFile(path: PathLike, data: java.lang.String, callback: NoParamCallback): Unit
    Annotations
    @inline()
  803. def writeFile(path: PathLike, data: ArrayBufferView, options: WriteFileOptions, callback: NoParamCallback): Unit
    Annotations
    @inline()
  804. def writeFile(path: PathLike, data: ArrayBufferView, callback: NoParamCallback): Unit
    Annotations
    @inline()
  805. def writeFileSync(path: Double, data: java.lang.String, options: WriteFileOptions): Unit
    Annotations
    @inline()
  806. def writeFileSync(path: Double, data: java.lang.String): Unit
    Annotations
    @inline()
  807. def writeFileSync(path: Double, data: ArrayBufferView, options: WriteFileOptions): Unit
    Annotations
    @inline()
  808. def writeFileSync(path: Double, data: ArrayBufferView): Unit
    Annotations
    @inline()
  809. def writeFileSync(path: PathLike, data: java.lang.String, options: WriteFileOptions): Unit
    Annotations
    @inline()
  810. def writeFileSync(path: PathLike, data: java.lang.String): Unit
    Annotations
    @inline()
  811. def writeFileSync(path: PathLike, data: ArrayBufferView, options: WriteFileOptions): Unit
    Annotations
    @inline()
  812. def writeFileSync(path: PathLike, data: ArrayBufferView): Unit
    Annotations
    @inline()
  813. def writeSync(fd: Double, string: java.lang.String, position: Unit, encoding: BufferEncoding): Double
    Annotations
    @inline()
  814. def writeSync(fd: Double, string: java.lang.String, position: Null, encoding: BufferEncoding): Double
    Annotations
    @inline()
  815. def writeSync(fd: Double, string: java.lang.String, position: Double, encoding: BufferEncoding): Double
    Annotations
    @inline()
  816. def writeSync(fd: Double, string: java.lang.String, position: Double): Double
    Annotations
    @inline()
  817. def writeSync(fd: Double, string: java.lang.String): Double
    Annotations
    @inline()
  818. def writeSync(fd: Double, buffer: ArrayBufferView, offset: Unit, length: Unit, position: Double): Double
    Annotations
    @inline()
  819. def writeSync(fd: Double, buffer: ArrayBufferView, offset: Unit, length: Null, position: Double): Double
    Annotations
    @inline()
  820. def writeSync(fd: Double, buffer: ArrayBufferView, offset: Unit, length: Double, position: Double): Double
    Annotations
    @inline()
  821. def writeSync(fd: Double, buffer: ArrayBufferView, offset: Unit, length: Double): Double
    Annotations
    @inline()
  822. def writeSync(fd: Double, buffer: ArrayBufferView, offset: Null, length: Unit, position: Double): Double
    Annotations
    @inline()
  823. def writeSync(fd: Double, buffer: ArrayBufferView, offset: Null, length: Null, position: Double): Double
    Annotations
    @inline()
  824. def writeSync(fd: Double, buffer: ArrayBufferView, offset: Null, length: Double, position: Double): Double
    Annotations
    @inline()
  825. def writeSync(fd: Double, buffer: ArrayBufferView, offset: Null, length: Double): Double
    Annotations
    @inline()
  826. def writeSync(fd: Double, buffer: ArrayBufferView, offset: Double, length: Unit, position: Double): Double
    Annotations
    @inline()
  827. def writeSync(fd: Double, buffer: ArrayBufferView, offset: Double, length: Null, position: Double): Double
    Annotations
    @inline()
  828. def writeSync(fd: Double, buffer: ArrayBufferView, offset: Double, length: Double, position: Double): Double
    Annotations
    @inline()
  829. def writeSync(fd: Double, buffer: ArrayBufferView, offset: Double, length: Double): Double
    Annotations
    @inline()
  830. def writeSync(fd: Double, buffer: ArrayBufferView, offset: Double): Double
    Annotations
    @inline()
  831. def writeSync(fd: Double, buffer: ArrayBufferView): Double
    Annotations
    @inline()
  832. def writev(fd: Double, buffers: Array[ArrayBufferView], position: Double, cb: Function3[|[ErrnoException, Null], Double, Array[ArrayBufferView], Unit]): Unit
    Annotations
    @inline()
  833. def writev(fd: Double, buffers: Array[ArrayBufferView], cb: Function3[|[ErrnoException, Null], Double, Array[ArrayBufferView], Unit]): Unit
    Annotations
    @inline()
  834. def writevSync(fd: Double, buffers: Array[ArrayBufferView], position: Double): Double
    Annotations
    @inline()
  835. def writevSync(fd: Double, buffers: Array[ArrayBufferView]): Double
    Annotations
    @inline()
  836. object BaseEncodingOptions
  837. object BigIntOptions
  838. object MakeDirectoryOptions
  839. object OpenDirOptions
  840. object ReadStreamOptions
  841. object ReadSyncOptions
  842. object ReadVResult
  843. object RmDirOptions
  844. object RmOptions
  845. object StatOptions
  846. object StatsBase
  847. object StreamOptions
  848. object WatchOptions
  849. object WriteVResult
  850. object ^ extends Object with StObject
    Annotations
    @JSImport("fs", JSImport.Namespace) @native()
  851. object constants
  852. object promises
  853. object realpath
  854. object realpathSync
  855. object symlink

Inherited from AnyRef

Inherited from Any

Ungrouped