syncio.idx 5.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. nimTitle syncio syncio.html module std/syncio 0
  2. nim File syncio.html#File type File 24
  3. nim fmRead syncio.html#fmRead FileMode.fmRead 26
  4. nim fmWrite syncio.html#fmWrite FileMode.fmWrite 26
  5. nim fmReadWrite syncio.html#fmReadWrite FileMode.fmReadWrite 26
  6. nim fmReadWriteExisting syncio.html#fmReadWriteExisting FileMode.fmReadWriteExisting 26
  7. nim fmAppend syncio.html#fmAppend FileMode.fmAppend 26
  8. nim FileMode syncio.html#FileMode enum FileMode 26
  9. nim FileHandle syncio.html#FileHandle type FileHandle 43
  10. nim fspSet syncio.html#fspSet FileSeekPos.fspSet 46
  11. nim fspCur syncio.html#fspCur FileSeekPos.fspCur 46
  12. nim fspEnd syncio.html#fspEnd FileSeekPos.fspEnd 46
  13. nim FileSeekPos syncio.html#FileSeekPos enum FileSeekPos 46
  14. nim stdin syncio.html#stdin var stdin 63
  15. nim stdout syncio.html#stdout var stdout 65
  16. nim stderr syncio.html#stderr var stderr 67
  17. nim stdmsg syncio.html#stdmsg.t template stdmsg(): File 73
  18. nim readBuffer syncio.html#readBuffer,File,pointer,Natural proc readBuffer(f: File; buffer: pointer; len: Natural): int 180
  19. nim readBytes syncio.html#readBytes,File,openArray[],Natural,Natural proc readBytes(f: File; a: var openArray[int8 | uint8]; start, len: Natural): int 188
  20. nim readChars syncio.html#readChars,File,openArray[char] proc readChars(f: File; a: var openArray[char]): int 196
  21. nim readChars syncio.html#readChars,File,openArray[char],Natural,Natural proc readChars(f: File; a: var openArray[char]; start, len: Natural): int 202
  22. nim write syncio.html#write,File,cstring proc write(f: File; c: cstring) 212
  23. nim writeBuffer syncio.html#writeBuffer,File,pointer,Natural proc writeBuffer(f: File; buffer: pointer; len: Natural): int 217
  24. nim writeBytes syncio.html#writeBytes,File,openArray[],Natural,Natural proc writeBytes(f: File; a: openArray[int8 | uint8]; start, len: Natural): int 225
  25. nim writeChars syncio.html#writeChars,File,openArray[char],Natural,Natural proc writeChars(f: File; a: openArray[char]; start, len: Natural): int 233
  26. nim write syncio.html#write,File,string proc write(f: File; s: string) 263
  27. nim close syncio.html#close,File proc close(f: File) 341
  28. nim readChar syncio.html#readChar,File proc readChar(f: File): char 345
  29. nim flushFile syncio.html#flushFile,File proc flushFile(f: File) 354
  30. nim getFileHandle syncio.html#getFileHandle,File proc getFileHandle(f: File): FileHandle 358
  31. nim getOsFileHandle syncio.html#getOsFileHandle,File proc getOsFileHandle(f: File): FileHandle 366
  32. nim setInheritable syncio.html#setInheritable,FileHandle,bool proc setInheritable(f: FileHandle; inheritable: bool): bool 375
  33. nim readLine syncio.html#readLine,File,string proc readLine(f: File; line: var string): bool 396
  34. nim readLine syncio.html#readLine,File proc readLine(f: File): string 517
  35. nim write syncio.html#write,File,int proc write(f: File; i: int) 524
  36. nim write syncio.html#write,File,BiggestInt proc write(f: File; i: BiggestInt) 530
  37. nim write syncio.html#write,File,bool proc write(f: File; b: bool) 536
  38. nim write syncio.html#write,File,float32 proc write(f: File; r: float32) 540
  39. nim write syncio.html#write,File,BiggestFloat proc write(f: File; r: BiggestFloat) 545
  40. nim write syncio.html#write,File,char proc write(f: File; c: char) 550
  41. nim write syncio.html#write,File,varargs[string,] proc write(f: File; a: varargs[string, `$`]) 553
  42. nim endOfFile syncio.html#endOfFile,File proc endOfFile(f: File): bool 577
  43. nim readAll syncio.html#readAll,File proc readAll(file: File): string 601
  44. nim writeLine syncio.html#writeLine,File,varargs[Ty,] proc writeLine[Ty](f: File; x: varargs[Ty, `$`]) 618
  45. nim open syncio.html#open,File,string,FileMode,int proc open(f: var File; filename: string; mode: FileMode = fmRead; bufSize: int = -1): bool 709
  46. nim reopen syncio.html#reopen,File,string,FileMode proc reopen(f: File; filename: string; mode: FileMode = fmRead): bool 744
  47. nim open syncio.html#open,File,FileHandle,FileMode proc open(f: var File; filehandle: FileHandle; mode: FileMode = fmRead): bool 763
  48. nim open syncio.html#open,string,FileMode,int proc open(filename: string; mode: FileMode = fmRead; bufSize: int = -1): File 778
  49. nim setFilePos syncio.html#setFilePos,File,int64,FileSeekPos proc setFilePos(f: File; pos: int64; relativeTo: FileSeekPos = fspSet) 790
  50. nim getFilePos syncio.html#getFilePos,File proc getFilePos(f: File): int64 796
  51. nim getFileSize syncio.html#getFileSize,File proc getFileSize(f: File): int64 802
  52. nim setStdIoUnbuffered syncio.html#setStdIoUnbuffered proc setStdIoUnbuffered() 809
  53. nim readFile syncio.html#readFile,string proc readFile(filename: string): string 863
  54. nim writeFile syncio.html#writeFile,string,string proc writeFile(filename, content: string) 878
  55. nim writeFile syncio.html#writeFile,string,openArray[byte] proc writeFile(filename: string; content: openArray[byte]) 891
  56. nim readLines syncio.html#readLines,string,Natural proc readLines(filename: string; n: Natural): seq[string] 904
  57. nim readLines syncio.html#readLines.t,string template readLines(filename: string): seq[string] 921
  58. nim lines syncio.html#lines.i,string iterator lines(filename: string): string 925
  59. nim lines syncio.html#lines.i,File iterator lines(f: File): string 946
  60. nim `&=` syncio.html#&=.t,File,typed template `&=`(f: File; x: typed) 961
  61. nimgrp writefile syncio.html#writeFile-procs-all proc 878
  62. nimgrp write syncio.html#write-procs-all proc 212
  63. nimgrp readline syncio.html#readLine-procs-all proc 396
  64. nimgrp readchars syncio.html#readChars-procs-all proc 196
  65. nimgrp open syncio.html#open-procs-all proc 709
  66. nimgrp lines syncio.html#lines-iterators-all iterator 925