@@ -2262,7 +2262,7 @@ Return the current lexpad.
2262
2262
Given a context, return the outer context, or null.
2263
2263
2264
2264
## lexprimspec
2265
- * ` lexprimspec(LexPad $pad, str $name) `
2265
+ * ` lexprimspec(LexPad $pad, str $name --> int ) `
2266
2266
2267
2267
Given a lexpad and a name, return the name's primitive type.
2268
2268
@@ -2480,13 +2480,13 @@ for debugging.
2480
2480
Exit nqp, using the given status as the compiler's exit value.
2481
2481
2482
2482
## getenvhash
2483
- * ` getenvhash() `
2483
+ * ` getenvhash(--> Mu ) `
2484
2484
2485
2485
Returns a hash containing the environment variables.
2486
2486
Changing the hash doesn't affect the environment variables
2487
2487
2488
2488
## backendconfig
2489
- * ` backendconfig() `
2489
+ * ` backendconfig(--> Mu ) `
2490
2490
2491
2491
Returns a hash containing backend-specific information, like backend-version,
2492
2492
configure and build flags.
@@ -2497,7 +2497,7 @@ configure and build flags.
2497
2497
Return the current process id, an int.
2498
2498
2499
2499
## jvmclasspaths ` jvm `
2500
- * ` jvmclasspaths() `
2500
+ * ` jvmclasspaths(--> Mu ) `
2501
2501
2502
2502
Converts the JVM property ` java.class.path ` into a list of paths, returns it.
2503
2503
@@ -2682,21 +2682,21 @@ value originally at the location (which can be compared with `$expected` to
2682
2682
see if the operation was a success).
2683
2683
2684
2684
## atomicinc_i ` moar `
2685
- * ` atomicinc_i(NativeIntRef $i) `
2685
+ * ` atomicinc_i(NativeIntRef $i --> int ) `
2686
2686
2687
2687
Takes an object with the ` NativeRef ` representation, which must point to an
2688
2688
integer of the machine's atomic operation size. Performs an atomic increment
2689
2689
of the referenced integer. Returns the value ** before** it was incremented.
2690
2690
2691
2691
## atomicdec_i ` moar `
2692
- * ` atomicdec_i(NativeIntRef $i) `
2692
+ * ` atomicdec_i(NativeIntRef $i --> int ) `
2693
2693
2694
2694
Takes an object with the ` NativeRef ` representation, which must point to an
2695
2695
integer of the machine's atomic operation size. Performs an atomic decrement
2696
2696
of the referenced integer. Returns the value ** before** it was decremented.
2697
2697
2698
2698
## atomicadd_i ` moar `
2699
- * ` atomicadd_i(NativeIntRef $i, int $value) `
2699
+ * ` atomicadd_i(NativeIntRef $i, int $value --> int ) `
2700
2700
2701
2701
Takes an object with the ` NativeRef ` representation, which must point to an
2702
2702
integer of the machine's atomic operation size. Performs an atomic addition of
@@ -2712,7 +2712,7 @@ atomic load (that is, with appropriate barriering to ensure the latest value
2712
2712
is read). Performs the atomic load, and returns the loaded object.
2713
2713
2714
2714
## atomicload_i ` moar `
2715
- * ` atomicload_i(NativeIntRef $i) `
2715
+ * ` atomicload_i(NativeIntRef $i --> int ) `
2716
2716
2717
2717
Takes an object with the ` NativeRef ` representation, which must point to an
2718
2718
integer of the machine's atomic operation size. Performs an atomic load (that
0 commit comments