jscore.idx 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. nimTitle jscore jscore.html module std/jscore 0
  2. nim MathLib jscore.html#MathLib type MathLib 22
  3. nim JsonLib jscore.html#JsonLib type JsonLib 23
  4. nim DateLib jscore.html#DateLib type DateLib 24
  5. nim DateTime jscore.html#DateTime type DateTime 25
  6. nim Math jscore.html#Math var Math 28
  7. nim Date jscore.html#Date var Date 29
  8. nim JSON jscore.html#JSON var JSON 30
  9. nim abs jscore.html#abs,MathLib,SomeNumber proc abs(m: MathLib; a: SomeNumber): SomeNumber 33
  10. nim acos jscore.html#acos,MathLib,SomeNumber proc acos(m: MathLib; a: SomeNumber): float 34
  11. nim acosh jscore.html#acosh,MathLib,SomeNumber proc acosh(m: MathLib; a: SomeNumber): float 35
  12. nim asin jscore.html#asin,MathLib,SomeNumber proc asin(m: MathLib; a: SomeNumber): float 36
  13. nim asinh jscore.html#asinh,MathLib,SomeNumber proc asinh(m: MathLib; a: SomeNumber): float 37
  14. nim atan jscore.html#atan,MathLib,SomeNumber proc atan(m: MathLib; a: SomeNumber): float 38
  15. nim atan2 jscore.html#atan2,MathLib,SomeNumber proc atan2(m: MathLib; a: SomeNumber): float 39
  16. nim atanh jscore.html#atanh,MathLib,SomeNumber proc atanh(m: MathLib; a: SomeNumber): float 40
  17. nim cbrt jscore.html#cbrt,MathLib,SomeFloat proc cbrt(m: MathLib; f: SomeFloat): SomeFloat 41
  18. nim ceil jscore.html#ceil,MathLib,SomeFloat proc ceil(m: MathLib; f: SomeFloat): SomeFloat 42
  19. nim clz32 jscore.html#clz32,MathLib,SomeInteger proc clz32(m: MathLib; f: SomeInteger): int 43
  20. nim cos jscore.html#cos,MathLib,SomeNumber proc cos(m: MathLib; a: SomeNumber): float 44
  21. nim cosh jscore.html#cosh,MathLib,SomeNumber proc cosh(m: MathLib; a: SomeNumber): float 45
  22. nim exp jscore.html#exp,MathLib,SomeNumber proc exp(m: MathLib; a: SomeNumber): float 46
  23. nim expm1 jscore.html#expm1,MathLib,SomeNumber proc expm1(m: MathLib; a: SomeNumber): float 47
  24. nim floor jscore.html#floor,MathLib,SomeFloat proc floor(m: MathLib; f: SomeFloat): int 48
  25. nim fround jscore.html#fround,MathLib,SomeFloat proc fround(m: MathLib; f: SomeFloat): float32 49
  26. nim hypot jscore.html#hypot,MathLib,varargs[] proc hypot(m: MathLib; args: varargs[distinct SomeNumber]): float 50
  27. nim imul jscore.html#imul,MathLib,int32,int32 proc imul(m: MathLib; a, b: int32): int32 51
  28. nim log jscore.html#log,MathLib,SomeNumber proc log(m: MathLib; a: SomeNumber): float 52
  29. nim log10 jscore.html#log10,MathLib,SomeNumber proc log10(m: MathLib; a: SomeNumber): float 53
  30. nim log1p jscore.html#log1p,MathLib,SomeNumber proc log1p(m: MathLib; a: SomeNumber): float 54
  31. nim log2 jscore.html#log2,MathLib,SomeNumber proc log2(m: MathLib; a: SomeNumber): float 55
  32. nim max jscore.html#max,MathLib,SomeNumber,SomeNumber proc max(m: MathLib; a, b: SomeNumber): SomeNumber 56
  33. nim min jscore.html#min,MathLib,T,T proc min[T: SomeNumber | JsRoot](m: MathLib; a, b: T): T 57
  34. nim pow jscore.html#pow,MathLib,, proc pow(m: MathLib; a, b: distinct SomeNumber): float 58
  35. nim random jscore.html#random,MathLib proc random(m: MathLib): float 59
  36. nim round jscore.html#round,MathLib,SomeFloat proc round(m: MathLib; f: SomeFloat): int 60
  37. nim sign jscore.html#sign,MathLib,SomeNumber proc sign(m: MathLib; f: SomeNumber): int 61
  38. nim sin jscore.html#sin,MathLib,SomeNumber proc sin(m: MathLib; a: SomeNumber): float 62
  39. nim sinh jscore.html#sinh,MathLib,SomeNumber proc sinh(m: MathLib; a: SomeNumber): float 63
  40. nim sqrt jscore.html#sqrt,MathLib,SomeFloat proc sqrt(m: MathLib; f: SomeFloat): SomeFloat 64
  41. nim tan jscore.html#tan,MathLib,SomeNumber proc tan(m: MathLib; a: SomeNumber): float 65
  42. nim tanh jscore.html#tanh,MathLib,SomeNumber proc tanh(m: MathLib; a: SomeNumber): float 66
  43. nim trunc jscore.html#trunc,MathLib,SomeFloat proc trunc(m: MathLib; f: SomeFloat): int 67
  44. nim now jscore.html#now,DateLib proc now(d: DateLib): int 70
  45. nim UTC jscore.html#UTC,DateLib proc UTC(d: DateLib): int 71
  46. nim parse jscore.html#parse,DateLib,cstring proc parse(d: DateLib; s: cstring): int 72
  47. nim newDate jscore.html#newDate proc newDate(): DateTime 74
  48. nim newDate jscore.html#newDate_2 proc newDate(date: int | string): DateTime 77
  49. nim newDate jscore.html#newDate,int64 proc newDate(date: int64): DateTime 84
  50. nim newDate jscore.html#newDate,int,int,int,int,int,int,int proc newDate(year, month, day, hours, minutes, seconds, milliseconds: int): DateTime 87
  51. nim getDay jscore.html#getDay,DateTime proc getDay(d: DateTime): int 91
  52. nim getFullYear jscore.html#getFullYear,DateTime proc getFullYear(d: DateTime): int 92
  53. nim getHours jscore.html#getHours,DateTime proc getHours(d: DateTime): int 93
  54. nim getMilliseconds jscore.html#getMilliseconds,DateTime proc getMilliseconds(d: DateTime): int 94
  55. nim getMinutes jscore.html#getMinutes,DateTime proc getMinutes(d: DateTime): int 95
  56. nim getMonth jscore.html#getMonth,DateTime proc getMonth(d: DateTime): int 96
  57. nim getSeconds jscore.html#getSeconds,DateTime proc getSeconds(d: DateTime): int 97
  58. nim getTime jscore.html#getTime,DateTime proc getTime(d: DateTime): int 98
  59. nim getTimezoneOffset jscore.html#getTimezoneOffset,DateTime proc getTimezoneOffset(d: DateTime): int 99
  60. nim getUTCDate jscore.html#getUTCDate,DateTime proc getUTCDate(d: DateTime): int 100
  61. nim getUTCDay jscore.html#getUTCDay,DateTime proc getUTCDay(d: DateTime): int 101
  62. nim getUTCFullYear jscore.html#getUTCFullYear,DateTime proc getUTCFullYear(d: DateTime): int 102
  63. nim getUTCHours jscore.html#getUTCHours,DateTime proc getUTCHours(d: DateTime): int 103
  64. nim getUTCMilliseconds jscore.html#getUTCMilliseconds,DateTime proc getUTCMilliseconds(d: DateTime): int 104
  65. nim getUTCMinutes jscore.html#getUTCMinutes,DateTime proc getUTCMinutes(d: DateTime): int 105
  66. nim getUTCMonth jscore.html#getUTCMonth,DateTime proc getUTCMonth(d: DateTime): int 106
  67. nim getUTCSeconds jscore.html#getUTCSeconds,DateTime proc getUTCSeconds(d: DateTime): int 107
  68. nim getYear jscore.html#getYear,DateTime proc getYear(d: DateTime): int 108
  69. nim setFullYear jscore.html#setFullYear,DateTime,int proc setFullYear(d: DateTime; year: int) 110
  70. nim toDateString jscore.html#toDateString,DateTime proc toDateString(d: DateTime): cstring 112
  71. nim toISOString jscore.html#toISOString,DateTime proc toISOString(d: DateTime): cstring 113
  72. nim toJSON jscore.html#toJSON,DateTime proc toJSON(d: DateTime): cstring 114
  73. nim toString jscore.html#toString,DateTime proc toString(d: DateTime): cstring 115
  74. nim toTimeString jscore.html#toTimeString,DateTime proc toTimeString(d: DateTime): cstring 116
  75. nim toUTCString jscore.html#toUTCString,DateTime proc toUTCString(d: DateTime): cstring 117
  76. nim stringify jscore.html#stringify,JsonLib,JsRoot proc stringify(l: JsonLib; s: JsRoot): cstring 120
  77. nim parse jscore.html#parse,JsonLib,cstring proc parse(l: JsonLib; s: cstring): JsRoot 121
  78. nim debugger jscore.html#debugger proc debugger() 125
  79. nim copyWithin jscore.html#copyWithin,openArray[T],int proc copyWithin[T](self: openArray[T]; target: int): seq[T] 128
  80. nim copyWithin jscore.html#copyWithin,openArray[T],int,int proc copyWithin[T](self: openArray[T]; target, start: int): seq[T] 129
  81. nim copyWithin jscore.html#copyWithin,openArray[T],int,int,int proc copyWithin[T](self: openArray[T]; target, start, ends: int): seq[T] 130
  82. nim shift jscore.html#shift,seq[T] proc shift[T](self: seq[T]): T 143
  83. nim queueMicrotask jscore.html#queueMicrotask,proc proc queueMicrotask(function: proc) 150
  84. nimgrp newdate jscore.html#newDate-procs-all proc 74
  85. nimgrp parse jscore.html#parse-procs-all proc 72
  86. nimgrp copywithin jscore.html#copyWithin-procs-all proc 128