diff --git a/stdlib/array.md b/stdlib/array.md index cdb07a931..26182d3f9 100644 --- a/stdlib/array.md +++ b/stdlib/array.md @@ -1265,7 +1265,7 @@ Array.unique([> 1, 2, 1, 2, 3, 1]) == [> 1, 2, 3] versionchanges -nextSupport zipping arrays of different sizes +0.6.0Support zipping arrays of different sizes @@ -1425,7 +1425,7 @@ Array.join(", ", [> "a", "b", "c"]) == "a, b, c" versionchanges -nextDefault `end` to the Array length +0.6.0Default `end` to the Array length @@ -1473,7 +1473,7 @@ Array.slice(1, [> 1, 2, 3, 4]) == [> 2, 3, 4] versionchanges -nextMade `compare` a default argument +0.6.0Made `compare` a default argument @@ -1510,7 +1510,7 @@ assert arr == [> 1, 2, 3, 4] versionchanges -nextBehavior changed from right-rotation to left-rotation +0.6.0Behavior changed from right-rotation to left-rotation @@ -1549,7 +1549,7 @@ assert array == [> 5, 1, 2, 3, 4] ### Array.**chunk**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1595,7 +1595,7 @@ Array.chunk(2, [> 1, 2, 3, 4]) == [> [> 1, 2], [> 3, 4]] An immutable array implementation.
-Added in next +Added in 0.6.0 @@ -1635,7 +1635,7 @@ Functions and constants included in the Array.Immutable module. #### Array.Immutable.**empty**
-Added in next +Added in 0.6.0
versionchanges
@@ -1661,7 +1661,7 @@ Array.Immutable.empty == Array.Immutable.fromList([]) #### Array.Immutable.**isEmpty**
-Added in next +Added in 0.6.0
versionchanges
@@ -1705,7 +1705,7 @@ assert Immutable.isEmpty(Immutable.fromList([])) == true #### Array.Immutable.**length**
-Added in next +Added in 0.6.0
versionchanges
@@ -1744,7 +1744,7 @@ assert Immutable.length(Immutable.fromList([1, 2, 3, 4, 5])) == 5 #### Array.Immutable.**get**
-Added in next +Added in 0.6.0
versionchanges
@@ -1796,7 +1796,7 @@ assert Immutable.get(-1, Immutable.fromList([1, 2, 3, 4])) == 4 #### Array.Immutable.**set**
-Added in next +Added in 0.6.0
versionchanges
@@ -1848,7 +1848,7 @@ assert array == Immutable.fromList([1, 9, 3, 4, 5]) #### Array.Immutable.**append**
-Added in next +Added in 0.6.0
versionchanges
@@ -1894,7 +1894,7 @@ assert arr2 == Immutable.fromList([3, 4, 5]) #### Array.Immutable.**concat**
-Added in next +Added in 0.6.0
versionchanges
@@ -1937,7 +1937,7 @@ assert Immutable.concat([arr1, arr2, arr3]) == Immutable.fromList([1, 2, 3, 4, 5 #### Array.Immutable.**init**
-Added in next +Added in 0.6.0
versionchanges
@@ -1984,7 +1984,7 @@ assert Immutable.init(5, i => i + 3) == Immutable.fromList([3, 4, 5, 6, 7]) #### Array.Immutable.**make**
-Added in next +Added in 0.6.0
versionchanges
@@ -2025,7 +2025,7 @@ assert Immutable.make(5, "🌾") == Immutable.fromList(["🌾", "🌾", "🌾", #### Array.Immutable.**forEach**
-Added in next +Added in 0.6.0
versionchanges
@@ -2062,7 +2062,7 @@ assert str == "foobarbaz" #### Array.Immutable.**cycle**
-Added in next +Added in 0.6.0
versionchanges
@@ -2100,7 +2100,7 @@ assert str == "abcabc" #### Array.Immutable.**map**
-Added in next +Added in 0.6.0
versionchanges
@@ -2143,7 +2143,7 @@ assert arr == Immutable.fromList(["foo_", "bar_", "baz_"]) #### Array.Immutable.**reduce**
-Added in next +Added in 0.6.0
versionchanges
@@ -2191,7 +2191,7 @@ assert Immutable.reduce((acc, x) => acc + x, 0, arr) == 6 #### Array.Immutable.**reduceRight**
-Added in next +Added in 0.6.0
versionchanges
@@ -2239,7 +2239,7 @@ assert Immutable.reduceRight((x, acc) => acc ++ x, "", arr) == "foobarbaz" #### Array.Immutable.**flatMap**
-Added in next +Added in 0.6.0
versionchanges
@@ -2286,7 +2286,7 @@ assert arr == Immutable.fromList([1, 2, 3, 4, 5, 6]) #### Array.Immutable.**fromList**
-Added in next +Added in 0.6.0
versionchanges
@@ -2326,7 +2326,7 @@ assert Immutable.get(1, arr) == 2 #### Array.Immutable.**toList**
-Added in next +Added in 0.6.0
versionchanges
@@ -2367,7 +2367,7 @@ assert Immutable.toList(arr) == ['d', 'b', 'c'] #### Array.Immutable.**filter**
-Added in next +Added in 0.6.0
versionchanges
@@ -2411,7 +2411,7 @@ assert Immutable.toList(arr) == ['a', 'a'] #### Array.Immutable.**every**
-Added in next +Added in 0.6.0
versionchanges
@@ -2459,7 +2459,7 @@ assert Immutable.every(e => e == 'a', arr) == false #### Array.Immutable.**some**
-Added in next +Added in 0.6.0
versionchanges
@@ -2507,7 +2507,7 @@ assert Immutable.some(e => e == 'a', arr) == false #### Array.Immutable.**reverse**
-Added in next +Added in 0.6.0
versionchanges
@@ -2548,7 +2548,7 @@ assert Immutable.toList(arr) == ['c', 'b', 'a'] #### Array.Immutable.**contains**
-Added in next +Added in 0.6.0
versionchanges
@@ -2596,7 +2596,7 @@ assert Immutable.contains('a', arr) == false #### Array.Immutable.**find**
-Added in next +Added in 0.6.0
versionchanges
@@ -2643,7 +2643,7 @@ assert Immutable.find(e => e == 2, arr) == None #### Array.Immutable.**findIndex**
-Added in next +Added in 0.6.0
versionchanges
@@ -2690,7 +2690,7 @@ assert Immutable.findIndex(e => e == 2, arr) == None #### Array.Immutable.**product**
-Added in next +Added in 0.6.0
versionchanges
@@ -2735,7 +2735,7 @@ assert Immutable.product(arr1, arr2) == Immutable.fromList([(1, 3), (1, 4), (2, #### Array.Immutable.**count**
-Added in next +Added in 0.6.0
versionchanges
@@ -2776,7 +2776,7 @@ assert Immutable.count(e => e == 1, arr) == 2 #### Array.Immutable.**unique**
-Added in next +Added in 0.6.0
versionchanges
@@ -2817,7 +2817,7 @@ assert Immutable.unique(arr) == Immutable.fromList([1, 2, 3, 4]) #### Array.Immutable.**zip**
-Added in next +Added in 0.6.0
versionchanges
@@ -2866,7 +2866,7 @@ assert Immutable.zip(arr1, arr2) == Immutable.fromList([(1, 4), (2, 5), (3, 6)]) #### Array.Immutable.**zipWith**
-Added in next +Added in 0.6.0
versionchanges
@@ -2925,7 +2925,7 @@ assert Immutable.zipWith((a, b) => a * b, arr1, arr2) == Immutable.fromList([4, #### Array.Immutable.**unzip**
-Added in next +Added in 0.6.0
versionchanges
@@ -2968,7 +2968,7 @@ assert Immutable.unzip(arr1) == (arr2, arr3) #### Array.Immutable.**join**
-Added in next +Added in 0.6.0
versionchanges
@@ -3009,14 +3009,14 @@ assert Immutable.join(", ", arr) == "a, b, c" #### Array.Immutable.**slice**
-Added in next +Added in 0.6.0
versionchanges
- +
versionchanges
0.5.4Originally in `"immutablearray"` module
nextDefault `end` to the Array length
0.6.0Default `end` to the Array length
@@ -3064,7 +3064,7 @@ assert Immutable.slice(1, end=-1, arr) == Immutable.fromList(['b']) #### Array.Immutable.**sort**
-Added in next +Added in 0.6.0 @@ -3109,7 +3109,7 @@ assert Immutable.sort(compare=(a, b) => a - b, arr) == Immutable.fromList([1, 2, #### Array.Immutable.**rotate**
-Added in next +Added in 0.6.0
versionchanges
diff --git a/stdlib/bigint.md b/stdlib/bigint.md index 19fab523d..799ad779c 100644 --- a/stdlib/bigint.md +++ b/stdlib/bigint.md @@ -222,7 +222,7 @@ BigInt.abs(-1t) == 1t ### BigInt.**(+)**
-Added in next +Added in 0.6.0
versionchanges
@@ -262,7 +262,7 @@ assert 1t + 1t == 2t ### BigInt.**(-)**
-Added in next +Added in 0.6.0
versionchanges
@@ -302,7 +302,7 @@ assert 3t - 1t == 2t ### BigInt.**(*)**
-Added in next +Added in 0.6.0
versionchanges
@@ -342,7 +342,7 @@ assert 3t * 3t == 9t ### BigInt.**(/)**
-Added in next +Added in 0.6.0
versionchanges
@@ -480,7 +480,7 @@ BigInt.gcd(36t, 24t) == 12t ### BigInt.**(<<)**
-Added in next +Added in 0.6.0
versionchanges
@@ -520,7 +520,7 @@ assert (10t << 2l) == 40t ### BigInt.**(>>)**
-Added in next +Added in 0.6.0
versionchanges
@@ -595,7 +595,7 @@ assert BigInt.eqz(1t) == false ### BigInt.**(==)**
-Added in next +Added in 0.6.0
versionchanges
@@ -640,7 +640,7 @@ assert -10t == -10t ### BigInt.**(!=)**
-Added in next +Added in 0.6.0
versionchanges
@@ -685,7 +685,7 @@ assert -10t != -20t ### BigInt.**(<)**
-Added in next +Added in 0.6.0
versionchanges
@@ -730,7 +730,7 @@ assert -10t < 0t ### BigInt.**(<=)**
-Added in next +Added in 0.6.0
versionchanges
@@ -780,7 +780,7 @@ assert 2t <= 3t ### BigInt.**(>)**
-Added in next +Added in 0.6.0
versionchanges
@@ -825,7 +825,7 @@ assert 0t > -10t ### BigInt.**(>=)**
-Added in next +Added in 0.6.0
versionchanges
@@ -906,7 +906,7 @@ BigInt.lnot(91234t) == -91235t ### BigInt.**(&)**
-Added in next +Added in 0.6.0
versionchanges
@@ -946,7 +946,7 @@ assert (4t & 3t) == 0t ### BigInt.**(|)**
-Added in next +Added in 0.6.0
versionchanges
@@ -986,7 +986,7 @@ assert (5t | 3t) == 7t ### BigInt.**(^)**
-Added in next +Added in 0.6.0
versionchanges
diff --git a/stdlib/buffer.md b/stdlib/buffer.md index 9b8960802..6c7eb5a2d 100644 --- a/stdlib/buffer.md +++ b/stdlib/buffer.md @@ -446,7 +446,7 @@ assert Buffer.toString(buf) == "H" ### Buffer.**addCharFromCodePoint**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -622,7 +622,7 @@ assert Buffer.toString(buf1) == "HelloWorld" ### Buffer.**getInt8**
-Added in next +Added in 0.6.0
versionchanges
@@ -677,7 +677,7 @@ assert Buffer.getInt8(0, buf) == 1s - +
versionchanges
versionchanges
next`value` argument type changed to `Int8`
0.6.0`value` argument type changed to `Int8`
@@ -722,7 +722,7 @@ assert Buffer.getInt8(0, buf) == 3s versionchanges -next`value` argument type changed to `Int8` +0.6.0`value` argument type changed to `Int8` @@ -751,7 +751,7 @@ assert Buffer.getInt8(0, buf) == 2s ### Buffer.**getUint8**
-Added in next +Added in 0.6.0 @@ -800,7 +800,7 @@ assert Buffer.getUint8(0, buf) == 3us ### Buffer.**setUint8**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -838,7 +838,7 @@ assert Buffer.getUint8(0, buf) == 4us ### Buffer.**addUint8**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -866,7 +866,7 @@ assert Buffer.getUint8(0, buf) == 0us ### Buffer.**getInt16**
-Added in next +Added in 0.6.0
versionchanges
@@ -921,7 +921,7 @@ assert Buffer.getInt16(0, buf) == 1S - +
versionchanges
versionchanges
next`value` argument type changed to `Int16`
0.6.0`value` argument type changed to `Int16`
@@ -966,7 +966,7 @@ assert Buffer.getInt16(5, buf) == 1S versionchanges -next`value` argument type changed to `Int16` +0.6.0`value` argument type changed to `Int16` @@ -995,7 +995,7 @@ assert Buffer.getInt16(0, buf) == 2S ### Buffer.**getUint16**
-Added in next +Added in 0.6.0 @@ -1044,7 +1044,7 @@ assert Buffer.getUint16(0, buf) == 1uS ### Buffer.**setUint16**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1082,7 +1082,7 @@ assert Buffer.getUint16(0, buf) == 1uS ### Buffer.**addUint16**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1218,7 +1218,7 @@ assert Buffer.getInt32(0, buf) == 1l ### Buffer.**getUint32**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1260,7 +1260,7 @@ assert Buffer.getUint32(0, buf) == 1ul ### Buffer.**setUint32**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1298,7 +1298,7 @@ assert Buffer.getUint32(0, buf) == 1ul ### Buffer.**addUint32**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1542,7 +1542,7 @@ assert Buffer.getInt64(0, buf) == 1L ### Buffer.**getUint64**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1584,7 +1584,7 @@ assert Buffer.getUint64(0, buf) == 1uL ### Buffer.**setUint64**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1622,7 +1622,7 @@ assert Buffer.getUint64(0, buf) == 1uL ### Buffer.**addUint64**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/bytes.md b/stdlib/bytes.md index e5163776a..4313c071f 100644 --- a/stdlib/bytes.md +++ b/stdlib/bytes.md @@ -377,7 +377,7 @@ assert Bytes.toString(Bytes.concat(helloBytes, worldBytes)) == "Hello World" - +
versionchanges
versionchanges
next`value` argument type changed to `Uint8`
0.6.0`value` argument type changed to `Uint8`
@@ -434,7 +434,7 @@ assert bytes == b"\x00\x00\x00\x00\x00" ### Bytes.**getInt8**
-Added in next +Added in 0.6.0 @@ -488,7 +488,7 @@ assert Bytes.getInt8(0, bytes) == 1s - +
versionchanges
versionchanges
next`value` argument type changed to `Int8`
0.6.0`value` argument type changed to `Int8`
@@ -525,7 +525,7 @@ assert Bytes.getInt8(0, bytes) == 2s ### Bytes.**getUint8**
-Added in next +Added in 0.6.0 @@ -573,7 +573,7 @@ assert Bytes.getUint8(0, bytes) == 1us ### Bytes.**setUint8**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -609,7 +609,7 @@ assert Bytes.getUint8(1, bytes) == 2us ### Bytes.**getInt16**
-Added in next +Added in 0.6.0
versionchanges
@@ -663,7 +663,7 @@ assert Bytes.getInt16(0, bytes) == -2S - +
versionchanges
versionchanges
next`value` argument type changed to `Int16`
0.6.0`value` argument type changed to `Int16`
@@ -700,7 +700,7 @@ assert Bytes.getInt16(0, bytes) == -1S ### Bytes.**getUint16**
-Added in next +Added in 0.6.0 @@ -748,7 +748,7 @@ assert Bytes.getUint16(0, bytes) == 2uS ### Bytes.**setUint16**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -861,7 +861,7 @@ assert Bytes.getInt32(0, bytes) == 1l ### Bytes.**getUint32**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -902,7 +902,7 @@ assert Bytes.getUint32(0, bytes) == 1ul ### Bytes.**setUint32**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1092,7 +1092,7 @@ assert Bytes.getInt64(0, bytes) == 1L ### Bytes.**getUint64**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1133,7 +1133,7 @@ assert Bytes.getUint64(0, bytes) == 1uL ### Bytes.**setUint64**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/char.md b/stdlib/char.md index 30b6d412d..65a69315e 100644 --- a/stdlib/char.md +++ b/stdlib/char.md @@ -288,7 +288,7 @@ Char.toString('🌾') == "🌾" ### Char.**(<)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -326,7 +326,7 @@ assert '1' < '2' ### Char.**(<=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -369,7 +369,7 @@ assert 'a' <= 'a' ### Char.**(>)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -407,7 +407,7 @@ assert '2' > '1' ### Char.**(>=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -450,7 +450,7 @@ assert 'a' >= 'a' ### Char.**isAsciiDigit**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -485,7 +485,7 @@ assert !Char.isAsciiDigit('a') ### Char.**isAsciiAlpha**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -520,7 +520,7 @@ assert !Char.isAsciiAlpha('1') ### Char.**toAsciiLowercase**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -551,7 +551,7 @@ assert Char.toAsciiLowercase('B') == 'b' ### Char.**toAsciiUppercase**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/float32.md b/stdlib/float32.md index 2bfb0b1ba..04e486a69 100644 --- a/stdlib/float32.md +++ b/stdlib/float32.md @@ -153,7 +153,7 @@ Returns: ### Float32.**(+)**
-Added in next +Added in 0.6.0
versionchanges
@@ -193,7 +193,7 @@ assert 1.0f + 1.0f == 2.0f ### Float32.**(-)**
-Added in next +Added in 0.6.0
versionchanges
@@ -233,7 +233,7 @@ assert 1.0f - 1.0f == 0.0f ### Float32.**(*)**
-Added in next +Added in 0.6.0
versionchanges
@@ -273,7 +273,7 @@ assert 2.0f * 2.0f == 4.0f ### Float32.**(/)**
-Added in next +Added in 0.6.0
versionchanges
@@ -313,7 +313,7 @@ assert 10.0f / 4.0f == 2.5f ### Float32.**(<)**
-Added in next +Added in 0.6.0
versionchanges
@@ -353,7 +353,7 @@ assert 1.0f < 2.0f ### Float32.**(>)**
-Added in next +Added in 0.6.0
versionchanges
@@ -393,7 +393,7 @@ assert 2.0f > 1.0f ### Float32.**(<=)**
-Added in next +Added in 0.6.0
versionchanges
@@ -438,7 +438,7 @@ assert -2.0f <= -2.0f ### Float32.**(>=)**
-Added in next +Added in 0.6.0
versionchanges
diff --git a/stdlib/float64.md b/stdlib/float64.md index 857012076..53414d60b 100644 --- a/stdlib/float64.md +++ b/stdlib/float64.md @@ -153,7 +153,7 @@ Returns: ### Float64.**(+)**
-Added in next +Added in 0.6.0
versionchanges
@@ -193,7 +193,7 @@ assert 1.0d + 1.0d == 2.0d ### Float64.**(-)**
-Added in next +Added in 0.6.0
versionchanges
@@ -233,7 +233,7 @@ assert 5.0d - 4.0d == 1.0d ### Float64.**(*)**
-Added in next +Added in 0.6.0
versionchanges
@@ -273,7 +273,7 @@ assert -5.0d * 4.0d == -20.0d ### Float64.**(/)**
-Added in next +Added in 0.6.0
versionchanges
@@ -313,7 +313,7 @@ assert 25.0d / 4.0d == 6.25d ### Float64.**(<)**
-Added in next +Added in 0.6.0
versionchanges
@@ -353,7 +353,7 @@ assert -5.0d < 5.0d ### Float64.**(>)**
-Added in next +Added in 0.6.0
versionchanges
@@ -393,7 +393,7 @@ assert 6.0d > 5.0d ### Float64.**(<=)**
-Added in next +Added in 0.6.0
versionchanges
@@ -438,7 +438,7 @@ assert 2.0d <= 2.0d ### Float64.**(>=)**
-Added in next +Added in 0.6.0
versionchanges
diff --git a/stdlib/int16.md b/stdlib/int16.md index a5a88c756..b7a311a07 100644 --- a/stdlib/int16.md +++ b/stdlib/int16.md @@ -5,7 +5,7 @@ title: Int16 Utilities for working with the Int16 type.
-Added in next +Added in 0.6.0 No other changes yet.
@@ -20,7 +20,7 @@ Functions and constants included in the Int16 module. ### Int16.**fromNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -45,7 +45,7 @@ Returns: ### Int16.**toNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -70,7 +70,7 @@ Returns: ### Int16.**fromUint16**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -95,7 +95,7 @@ Returns: ### Int16.**incr**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -120,7 +120,7 @@ Returns: ### Int16.**decr**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -145,7 +145,7 @@ Returns: ### Int16.**(+)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -171,7 +171,7 @@ Returns: ### Int16.**(-)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -197,7 +197,7 @@ Returns: ### Int16.**(*)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -223,7 +223,7 @@ Returns: ### Int16.**(/)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -249,7 +249,7 @@ Returns: ### Int16.**rem**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -275,7 +275,7 @@ Returns: ### Int16.**(%)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -308,7 +308,7 @@ Throws: ### Int16.**(<<)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -334,7 +334,7 @@ Returns: ### Int16.**(>>)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -360,7 +360,7 @@ Returns: ### Int16.**(==)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -386,7 +386,7 @@ Returns: ### Int16.**(!=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -412,7 +412,7 @@ Returns: ### Int16.**(<)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -438,7 +438,7 @@ Returns: ### Int16.**(>)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -464,7 +464,7 @@ Returns: ### Int16.**(<=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -490,7 +490,7 @@ Returns: ### Int16.**(>=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -516,7 +516,7 @@ Returns: ### Int16.**lnot**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -541,7 +541,7 @@ Returns: ### Int16.**(&)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -567,7 +567,7 @@ Returns: ### Int16.**(|)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -593,7 +593,7 @@ Returns: ### Int16.**(^)**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/int32.md b/stdlib/int32.md index d5f1b5d55..72c0b78f8 100644 --- a/stdlib/int32.md +++ b/stdlib/int32.md @@ -70,7 +70,7 @@ Returns: ### Int32.**fromUint32**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -145,7 +145,7 @@ Returns: ### Int32.**(+)**
-Added in next +Added in 0.6.0
versionchanges
@@ -178,7 +178,7 @@ Returns: ### Int32.**(-)**
-Added in next +Added in 0.6.0
versionchanges
@@ -211,7 +211,7 @@ Returns: ### Int32.**(*)**
-Added in next +Added in 0.6.0
versionchanges
@@ -244,7 +244,7 @@ Returns: ### Int32.**(/)**
-Added in next +Added in 0.6.0
versionchanges
@@ -303,7 +303,7 @@ Returns: ### Int32.**(%)**
-Added in next +Added in 0.6.0
versionchanges
@@ -395,7 +395,7 @@ Returns: ### Int32.**(<<)**
-Added in next +Added in 0.6.0
versionchanges
@@ -428,7 +428,7 @@ Returns: ### Int32.**(>>)**
-Added in next +Added in 0.6.0
versionchanges
@@ -461,7 +461,7 @@ Returns: ### Int32.**(==)**
-Added in next +Added in 0.6.0
versionchanges
@@ -494,7 +494,7 @@ Returns: ### Int32.**(!=)**
-Added in next +Added in 0.6.0
versionchanges
@@ -552,7 +552,7 @@ Returns: ### Int32.**(<)**
-Added in next +Added in 0.6.0
versionchanges
@@ -585,7 +585,7 @@ Returns: ### Int32.**(>)**
-Added in next +Added in 0.6.0
versionchanges
@@ -618,7 +618,7 @@ Returns: ### Int32.**(<=)**
-Added in next +Added in 0.6.0
versionchanges
@@ -651,7 +651,7 @@ Returns: ### Int32.**(>=)**
-Added in next +Added in 0.6.0
versionchanges
@@ -709,7 +709,7 @@ Returns: ### Int32.**(&)**
-Added in next +Added in 0.6.0
versionchanges
@@ -742,7 +742,7 @@ Returns: ### Int32.**(|)**
-Added in next +Added in 0.6.0
versionchanges
@@ -775,7 +775,7 @@ Returns: ### Int32.**(^)**
-Added in next +Added in 0.6.0
versionchanges
@@ -883,7 +883,7 @@ Returns: ### Int32.**(\*\*)**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/int64.md b/stdlib/int64.md index 0f74677d0..8501f21c5 100644 --- a/stdlib/int64.md +++ b/stdlib/int64.md @@ -70,7 +70,7 @@ Returns: ### Int64.**fromUint64**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -145,7 +145,7 @@ Returns: ### Int64.**(+)**
-Added in next +Added in 0.6.0
versionchanges
@@ -178,7 +178,7 @@ Returns: ### Int64.**(-)**
-Added in next +Added in 0.6.0
versionchanges
@@ -211,7 +211,7 @@ Returns: ### Int64.**(*)**
-Added in next +Added in 0.6.0
versionchanges
@@ -244,7 +244,7 @@ Returns: ### Int64.**(/)**
-Added in next +Added in 0.6.0
versionchanges
@@ -303,7 +303,7 @@ Returns: ### Int64.**(%)**
-Added in next +Added in 0.6.0
versionchanges
@@ -395,7 +395,7 @@ Returns: ### Int64.**(<<)**
-Added in next +Added in 0.6.0
versionchanges
@@ -428,7 +428,7 @@ Returns: ### Int64.**(>>)**
-Added in next +Added in 0.6.0
versionchanges
@@ -461,7 +461,7 @@ Returns: ### Int64.**(==)**
-Added in next +Added in 0.6.0
versionchanges
@@ -494,7 +494,7 @@ Returns: ### Int64.**(!=)**
-Added in next +Added in 0.6.0
versionchanges
@@ -552,7 +552,7 @@ Returns: ### Int64.**(<)**
-Added in next +Added in 0.6.0
versionchanges
@@ -585,7 +585,7 @@ Returns: ### Int64.**(>)**
-Added in next +Added in 0.6.0
versionchanges
@@ -618,7 +618,7 @@ Returns: ### Int64.**(<=)**
-Added in next +Added in 0.6.0
versionchanges
@@ -651,7 +651,7 @@ Returns: ### Int64.**(>=)**
-Added in next +Added in 0.6.0
versionchanges
@@ -709,7 +709,7 @@ Returns: ### Int64.**(&)**
-Added in next +Added in 0.6.0
versionchanges
@@ -742,7 +742,7 @@ Returns: ### Int64.**(|)**
-Added in next +Added in 0.6.0
versionchanges
@@ -775,7 +775,7 @@ Returns: ### Int64.**(^)**
-Added in next +Added in 0.6.0
versionchanges
@@ -883,7 +883,7 @@ Returns: ### Int64.**(\*\*)**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/int8.md b/stdlib/int8.md index 29c79017e..5b0040602 100644 --- a/stdlib/int8.md +++ b/stdlib/int8.md @@ -5,7 +5,7 @@ title: Int8 Utilities for working with the Int8 type.
-Added in next +Added in 0.6.0 No other changes yet.
@@ -28,7 +28,7 @@ Functions and constants included in the Int8 module. ### Int8.**fromNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -53,7 +53,7 @@ Returns: ### Int8.**toNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -78,7 +78,7 @@ Returns: ### Int8.**fromUint8**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -109,7 +109,7 @@ Int8.fromUint8(1us) == 1s ### Int8.**incr**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -144,7 +144,7 @@ Int8.incr(-2s) == -1s ### Int8.**decr**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -179,7 +179,7 @@ Int8.decr(0s) == -1s ### Int8.**(+)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -212,7 +212,7 @@ assert 1s + 1s == 2s ### Int8.**(-)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -245,7 +245,7 @@ assert 2s - 1s == 1s ### Int8.**(*)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -278,7 +278,7 @@ assert 2s * 2s == 4s ### Int8.**(/)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -311,7 +311,7 @@ assert 8s / 2s == 4s ### Int8.**rem**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -343,7 +343,7 @@ Int8.rem(8s, 3s) == 2s ### Int8.**(%)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -383,7 +383,7 @@ assert -5s % 3s == 1s ### Int8.**(<<)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -416,7 +416,7 @@ assert (5s << 1s) == 10s ### Int8.**(>>)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -449,7 +449,7 @@ assert (5s >> 1s) == 2s ### Int8.**(==)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -482,7 +482,7 @@ assert 1s == 1s ### Int8.**(!=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -515,7 +515,7 @@ assert 1s != 2s ### Int8.**(<)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -548,7 +548,7 @@ assert 1s < 2s ### Int8.**(>)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -581,7 +581,7 @@ assert 2s > 1s ### Int8.**(<=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -619,7 +619,7 @@ assert 1s <= 1s ### Int8.**(>=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -657,7 +657,7 @@ assert 1s >= 1s ### Int8.**lnot**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -688,7 +688,7 @@ Int.lnot(-5s) == 4s ### Int8.**(&)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -721,7 +721,7 @@ assert (3s & 4s) == 0s ### Int8.**(|)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -754,7 +754,7 @@ assert (3s | 4s) == 7s ### Int8.**(^)**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/json.md b/stdlib/json.md index 26d7947c6..a1ed7ee8a 100644 --- a/stdlib/json.md +++ b/stdlib/json.md @@ -504,7 +504,7 @@ Functions and constants included in the Json module. ### Json.**toString**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -573,7 +573,7 @@ assert toString( ### Json.**parse**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/list.md b/stdlib/list.md index 62be5b484..62b755974 100644 --- a/stdlib/list.md +++ b/stdlib/list.md @@ -94,7 +94,7 @@ Returns: ### List.**isEmpty**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -696,7 +696,7 @@ List.flatten([[1, 2], [3, 4]]) // [1, 2, 3, 4] - +
versionchanges
versionchanges
nextSwapped order of `index` and `value` parameters
0.6.0Swapped order of `index` and `value` parameters
@@ -803,7 +803,7 @@ Throws: versionchanges -nextNo longer throws if `count` outside list length bounds +0.6.0No longer throws if `count` outside list length bounds @@ -1297,7 +1297,7 @@ Returns: versionchanges -nextMade `compare` a default argument +0.6.0Made `compare` a default argument diff --git a/stdlib/map.md b/stdlib/map.md index 875e529f2..88c16eb46 100644 --- a/stdlib/map.md +++ b/stdlib/map.md @@ -49,7 +49,7 @@ Functions and constants included in the Map module. versionchanges -nextMerged with `makeSized`; modified signature to accept size +0.6.0Merged with `makeSized`; modified signature to accept size @@ -511,7 +511,7 @@ Parameters: versionchanges -nextReturn `InternalMapStats` record instead of a tuple +0.6.0Return `InternalMapStats` record instead of a tuple @@ -539,7 +539,7 @@ Returns: An immutable map implementation.
-Added in next +Added in 0.6.0 @@ -567,7 +567,7 @@ Functions and constants included in the Map.Immutable module. #### Map.Immutable.**empty**
-Added in next +Added in 0.6.0
versionchanges
@@ -587,7 +587,7 @@ An empty map #### Map.Immutable.**size**
-Added in next +Added in 0.6.0
versionchanges
@@ -619,7 +619,7 @@ Returns: #### Map.Immutable.**isEmpty**
-Added in next +Added in 0.6.0
versionchanges
@@ -651,7 +651,7 @@ Returns: #### Map.Immutable.**set**
-Added in next +Added in 0.6.0
versionchanges
@@ -685,7 +685,7 @@ Returns: #### Map.Immutable.**get**
-Added in next +Added in 0.6.0
versionchanges
@@ -718,7 +718,7 @@ Returns: #### Map.Immutable.**contains**
-Added in next +Added in 0.6.0
versionchanges
@@ -751,7 +751,7 @@ Returns: #### Map.Immutable.**remove**
-Added in next +Added in 0.6.0
versionchanges
@@ -785,7 +785,7 @@ Returns: #### Map.Immutable.**update**
-Added in next +Added in 0.6.0
versionchanges
@@ -823,7 +823,7 @@ Returns: #### Map.Immutable.**forEach**
-Added in next +Added in 0.6.0
versionchanges
@@ -850,7 +850,7 @@ Parameters: #### Map.Immutable.**reduce**
-Added in next +Added in 0.6.0
versionchanges
@@ -884,7 +884,7 @@ Returns: #### Map.Immutable.**keys**
-Added in next +Added in 0.6.0
versionchanges
@@ -916,7 +916,7 @@ Returns: #### Map.Immutable.**values**
-Added in next +Added in 0.6.0
versionchanges
@@ -948,7 +948,7 @@ Returns: #### Map.Immutable.**filter**
-Added in next +Added in 0.6.0
versionchanges
@@ -981,7 +981,7 @@ Returns: #### Map.Immutable.**reject**
-Added in next +Added in 0.6.0
versionchanges
@@ -1014,7 +1014,7 @@ Returns: #### Map.Immutable.**fromList**
-Added in next +Added in 0.6.0
versionchanges
@@ -1046,7 +1046,7 @@ Returns: #### Map.Immutable.**toList**
-Added in next +Added in 0.6.0
versionchanges
@@ -1078,7 +1078,7 @@ Returns: #### Map.Immutable.**fromArray**
-Added in next +Added in 0.6.0
versionchanges
@@ -1110,7 +1110,7 @@ Returns: #### Map.Immutable.**toArray**
-Added in next +Added in 0.6.0
versionchanges
diff --git a/stdlib/number.md b/stdlib/number.md index 503889402..dad45a6b0 100644 --- a/stdlib/number.md +++ b/stdlib/number.md @@ -44,7 +44,7 @@ Type declarations included in the Number module. ### Number.**ParseIntError**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -124,7 +124,7 @@ Euler's number represented as a Number value. ### Number.**(+)**
-Added in next +Added in 0.6.0
versionchanges
@@ -164,7 +164,7 @@ assert 1 + 2 == 3 ### Number.**(-)**
-Added in next +Added in 0.6.0
versionchanges
@@ -204,7 +204,7 @@ assert 5 - 2 == 3 ### Number.**(*)**
-Added in next +Added in 0.6.0
versionchanges
@@ -244,7 +244,7 @@ assert 5 * 4 == 20 ### Number.**(/)**
-Added in next +Added in 0.6.0
versionchanges
@@ -284,7 +284,7 @@ assert 10 / 2.5 == 4 ### Number.**(\*\*)**
-Added in next +Added in 0.6.0
versionchanges
@@ -1069,7 +1069,7 @@ Number.isInfinite(1) == false ### Number.**isClose**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1139,7 +1139,7 @@ Number.isClose(4, 4.1, relativeTolerance=0.024) == false - +
versionchanges
versionchanges
nextSwitched from a string-based error message to a structured error enum
0.6.0Switched from a string-based error message to a structured error enum
@@ -1271,7 +1271,7 @@ Number.parse("-1.5") == Ok(-1.5) ### Number.**asin**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1306,7 +1306,7 @@ Number.asin(1) == 1.5707963267948966 ### Number.**acos**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1341,7 +1341,7 @@ Number.acos(0) == 1.5707963267948966 ### Number.**atan**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1376,7 +1376,7 @@ Number.atan(1) == 0.7853981633974483 ### Number.**atan2**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1470,7 +1470,7 @@ Number.toRadians(Number.pi) == 180 ### Number.**clamp**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1496,7 +1496,7 @@ Returns: ### Number.**linearInterpolate**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1530,7 +1530,7 @@ Throws: ### Number.**linearMap**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/option.md b/stdlib/option.md index c661e64d5..2ef804775 100644 --- a/stdlib/option.md +++ b/stdlib/option.md @@ -542,7 +542,7 @@ Returns: ### Option.**(||)**
-Added in next +Added in 0.6.0 @@ -575,7 +575,7 @@ Returns: ### Option.**(&&)**
-Added in next +Added in 0.6.0
versionchanges
diff --git a/stdlib/path.md b/stdlib/path.md index 6ea189ac8..177373022 100644 --- a/stdlib/path.md +++ b/stdlib/path.md @@ -178,7 +178,7 @@ Functions and constants included in the Path module. - +
versionchanges
versionchanges
nextMerged with `fromPlatformString`; modified signature to accept platform
0.6.0Merged with `fromPlatformString`; modified signature to accept platform
@@ -232,7 +232,7 @@ fromString("C:\\file.txt", Windows) // a relative Path referencing the file C:\f versionchanges -nextMerged with `toPlatformString`; modified signature to accept platform +0.6.0Merged with `toPlatformString`; modified signature to accept platform diff --git a/stdlib/pervasives.md b/stdlib/pervasives.md index 0d903bed9..03c68b1a0 100644 --- a/stdlib/pervasives.md +++ b/stdlib/pervasives.md @@ -485,7 +485,7 @@ Returns: ### Pervasives.**(\*\*)**
-Added in next +Added in 0.6.0 diff --git a/stdlib/priorityqueue.md b/stdlib/priorityqueue.md index b18eceaaa..f151cca0b 100644 --- a/stdlib/priorityqueue.md +++ b/stdlib/priorityqueue.md @@ -40,7 +40,7 @@ Functions and constants included in the PriorityQueue module. - +
versionchanges
versionchanges
nextMerged with `makeSized`; modified signature to accept size
0.6.0Merged with `makeSized`; modified signature to accept size
@@ -241,7 +241,7 @@ Returns: versionchanges -nextMade `compare` a default argument +0.6.0Made `compare` a default argument @@ -279,7 +279,7 @@ Returns: versionchanges -nextMade `compare` a default argument +0.6.0Made `compare` a default argument @@ -312,7 +312,7 @@ Returns: An immutable priority queue implementation.
-Added in next +Added in 0.6.0 @@ -342,7 +342,7 @@ Functions and constants included in the PriorityQueue.Immutable module. #### PriorityQueue.Immutable.**empty**
-Added in next +Added in 0.6.0
versionchanges
@@ -362,7 +362,7 @@ An empty priority queue with the default `compare` comparator. #### PriorityQueue.Immutable.**make**
-Added in next +Added in 0.6.0
versionchanges
@@ -407,7 +407,7 @@ PriorityQueue.Immutable.make((a, b) => String.length(b) - String.length(a)) // c #### PriorityQueue.Immutable.**size**
-Added in next +Added in 0.6.0
versionchanges
@@ -439,7 +439,7 @@ Returns: #### PriorityQueue.Immutable.**isEmpty**
-Added in next +Added in 0.6.0
versionchanges
@@ -471,7 +471,7 @@ Returns: #### PriorityQueue.Immutable.**push**
-Added in next +Added in 0.6.0
versionchanges
@@ -504,7 +504,7 @@ Returns: #### PriorityQueue.Immutable.**peek**
-Added in next +Added in 0.6.0
versionchanges
@@ -537,7 +537,7 @@ Returns: #### PriorityQueue.Immutable.**pop**
-Added in next +Added in 0.6.0
versionchanges
@@ -571,7 +571,7 @@ Returns: #### PriorityQueue.Immutable.**drain**
-Added in next +Added in 0.6.0
versionchanges
@@ -603,7 +603,7 @@ Returns: #### PriorityQueue.Immutable.**fromList**
-Added in next +Added in 0.6.0
versionchanges
@@ -640,7 +640,7 @@ Returns: #### PriorityQueue.Immutable.**fromArray**
-Added in next +Added in 0.6.0
versionchanges
diff --git a/stdlib/queue.md b/stdlib/queue.md index 5b40be937..d2dc23c34 100644 --- a/stdlib/queue.md +++ b/stdlib/queue.md @@ -36,7 +36,7 @@ Functions and constants included in the Queue module. ### Queue.**make**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -64,7 +64,7 @@ Returns: ### Queue.**isEmpty**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -89,7 +89,7 @@ Returns: ### Queue.**size**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -114,7 +114,7 @@ Returns: ### Queue.**peek**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -139,7 +139,7 @@ Returns: ### Queue.**push**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -159,7 +159,7 @@ Parameters: ### Queue.**pop**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -184,7 +184,7 @@ Returns: ### Queue.**toList**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -209,7 +209,7 @@ Returns: ### Queue.**fromList**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -234,7 +234,7 @@ Returns: ### Queue.**clear**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -253,7 +253,7 @@ Parameters: ### Queue.**copy**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -278,7 +278,7 @@ Returns: ### Queue.**toArray**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -303,7 +303,7 @@ Returns: ### Queue.**fromArray**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -328,7 +328,7 @@ Returns: ### Queue.**(==)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -374,7 +374,7 @@ Functions and constants included in the Queue.Immutable module. #### Queue.Immutable.**empty**
-Added in next +Added in 0.6.0
versionchanges
@@ -394,7 +394,7 @@ An empty queue. #### Queue.Immutable.**isEmpty**
-Added in next +Added in 0.6.0
versionchanges
@@ -426,7 +426,7 @@ Returns: #### Queue.Immutable.**peek**
-Added in next +Added in 0.6.0
versionchanges
@@ -461,7 +461,7 @@ Returns: #### Queue.Immutable.**push**
-Added in next +Added in 0.6.0
versionchanges
@@ -497,7 +497,7 @@ Returns: #### Queue.Immutable.**pop**
-Added in next +Added in 0.6.0
versionchanges
@@ -532,7 +532,7 @@ Returns: #### Queue.Immutable.**size**
-Added in next +Added in 0.6.0
versionchanges
@@ -564,7 +564,7 @@ Returns: #### Queue.Immutable.**toList**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -589,7 +589,7 @@ Returns: #### Queue.Immutable.**fromList**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/random.md b/stdlib/random.md index 37af13476..28d2ad43e 100644 --- a/stdlib/random.md +++ b/stdlib/random.md @@ -74,7 +74,7 @@ Returns: ### Random.**nextUint32**
-Added in next +Added in 0.6.0
versionchanges
@@ -106,7 +106,7 @@ Returns: ### Random.**nextUint64**
-Added in next +Added in 0.6.0
versionchanges
@@ -138,7 +138,7 @@ Returns: ### Random.**nextUint32InRange**
-Added in next +Added in 0.6.0
versionchanges
@@ -173,7 +173,7 @@ Returns: ### Random.**nextUint64InRange**
-Added in next +Added in 0.6.0
versionchanges
diff --git a/stdlib/range.md b/stdlib/range.md index cfe95e3dd..91c2a0e5b 100644 --- a/stdlib/range.md +++ b/stdlib/range.md @@ -16,7 +16,7 @@ of all APIs are available in the `Inclusive` submodule. - +
versionchanges
versionchanges
nextTreats all ranges as exclusive
0.6.0Treats all ranges as exclusive
@@ -38,7 +38,7 @@ Functions and constants included in the Range module. versionchanges -nextTreats all ranges as exclusive +0.6.0Treats all ranges as exclusive @@ -81,7 +81,7 @@ Range.inRange(10, { rangeStart: 0, rangeEnd: 2 }) == false versionchanges -nextTreats all ranges as exclusive +0.6.0Treats all ranges as exclusive @@ -118,7 +118,7 @@ Range.forEach(val => print(val), { rangeStart: 0, rangeEnd: 2 }) versionchanges -nextTreats all ranges as exclusive +0.6.0Treats all ranges as exclusive @@ -161,7 +161,7 @@ Functions and constants included in the Range.Inclusive module. #### Range.Inclusive.**inRange**
-Added in next +Added in 0.6.0 diff --git a/stdlib/rational.md b/stdlib/rational.md index 13a1ae213..274b893f0 100644 --- a/stdlib/rational.md +++ b/stdlib/rational.md @@ -5,7 +5,7 @@ title: Rational Utilities for working with the Rational type.
-Added in next +Added in 0.6.0 No other changes yet.
@@ -28,7 +28,7 @@ Functions and constants included in the Rational module. ### Rational.**fromNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -53,7 +53,7 @@ Returns: ### Rational.**toNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -78,7 +78,7 @@ Returns: ### Rational.**numerator**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -103,7 +103,7 @@ Returns: ### Rational.**denominator**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -128,7 +128,7 @@ Returns: ### Rational.**toIntegerRatio**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -163,7 +163,7 @@ Rational.toIntegerRatio(2/8r) == (1, 4) ### Rational.**fromIntegerRatio**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -206,7 +206,7 @@ Rational.fromIntegerRatio(2, 8) == 1/4r ### Rational.**(+)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -239,7 +239,7 @@ assert 1/2r + 1/4r == 3/4r ### Rational.**(-)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -272,7 +272,7 @@ assert 1/2r - 1/4r == 1/4r ### Rational.**(*)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -305,7 +305,7 @@ assert 1/2r * 1/4r == 1/8r ### Rational.**(/)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -338,7 +338,7 @@ assert 1/2r / 1/4r == 2/1r ### Rational.**(==)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -371,7 +371,7 @@ assert 1/2r == 1/2r ### Rational.**(!=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -404,7 +404,7 @@ assert 1/2r != 1/4r ### Rational.**(<)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -437,7 +437,7 @@ assert 1/4r < 1/2r ### Rational.**(>)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -470,7 +470,7 @@ assert 1/2r > 1/4r ### Rational.**(<=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -508,7 +508,7 @@ assert 1/2r <= 1/2r ### Rational.**(>=)**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/result.md b/stdlib/result.md index 35be22f82..afc308ddf 100644 --- a/stdlib/result.md +++ b/stdlib/result.md @@ -268,7 +268,7 @@ Returns: ### Result.**(||)**
-Added in next +Added in 0.6.0
versionchanges
@@ -301,7 +301,7 @@ Returns: ### Result.**(&&)**
-Added in next +Added in 0.6.0
versionchanges
diff --git a/stdlib/runtime/atoi/parse.md b/stdlib/runtime/atoi/parse.md index a68af2bf2..3150d9515 100644 --- a/stdlib/runtime/atoi/parse.md +++ b/stdlib/runtime/atoi/parse.md @@ -9,7 +9,7 @@ Type declarations included in the Parse module. ### Parse.**ParseIntError**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/runtime/numbers.md b/stdlib/runtime/numbers.md index 98e4c16f4..99f9de35b 100644 --- a/stdlib/runtime/numbers.md +++ b/stdlib/runtime/numbers.md @@ -161,7 +161,7 @@ cmpRationals : (x: WasmI32, y: WasmI32) => WasmI32 ### Numbers.**rationalNumerator**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -186,7 +186,7 @@ Returns: ### Numbers.**rationalDenominator**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -563,7 +563,7 @@ Returns: ### Numbers.**coerceNumberToInt8**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -588,7 +588,7 @@ Returns: ### Numbers.**coerceNumberToInt16**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -613,7 +613,7 @@ Returns: ### Numbers.**coerceNumberToUint8**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -638,7 +638,7 @@ Returns: ### Numbers.**coerceNumberToUint16**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -738,7 +738,7 @@ Returns: ### Numbers.**coerceNumberToRational**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -813,7 +813,7 @@ Returns: ### Numbers.**coerceInt8ToNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -838,7 +838,7 @@ Returns: ### Numbers.**coerceInt16ToNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -863,7 +863,7 @@ Returns: ### Numbers.**coerceUint8ToNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -888,7 +888,7 @@ Returns: ### Numbers.**coerceUint16ToNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -988,7 +988,7 @@ Returns: ### Numbers.**coerceRationalToNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1288,7 +1288,7 @@ Returns: ### Numbers.**(\*\*)**
-Added in next +Added in 0.6.0
versionchanges
diff --git a/stdlib/set.md b/stdlib/set.md index 8e1c7492f..7370fb02d 100644 --- a/stdlib/set.md +++ b/stdlib/set.md @@ -49,7 +49,7 @@ Functions and constants included in the Set module. - +
versionchanges
versionchanges
nextMerged with `makeSized`; modified signature to accept size
0.6.0Merged with `makeSized`; modified signature to accept size
@@ -491,7 +491,7 @@ Returns: versionchanges -nextReturn `InternalSetStats` record instead of a tuple +0.6.0Return `InternalSetStats` record instead of a tuple @@ -519,7 +519,7 @@ Returns: An immutable set implementation.
-Added in next +Added in 0.6.0 @@ -547,7 +547,7 @@ Functions and constants included in the Set.Immutable module. #### Set.Immutable.**empty**
-Added in next +Added in 0.6.0
versionchanges
@@ -567,7 +567,7 @@ An empty set #### Set.Immutable.**size**
-Added in next +Added in 0.6.0
versionchanges
@@ -599,7 +599,7 @@ Returns: #### Set.Immutable.**isEmpty**
-Added in next +Added in 0.6.0
versionchanges
@@ -631,7 +631,7 @@ Returns: #### Set.Immutable.**add**
-Added in next +Added in 0.6.0
versionchanges
@@ -665,7 +665,7 @@ Returns: #### Set.Immutable.**contains**
-Added in next +Added in 0.6.0
versionchanges
@@ -698,7 +698,7 @@ Returns: #### Set.Immutable.**remove**
-Added in next +Added in 0.6.0
versionchanges
@@ -732,7 +732,7 @@ Returns: #### Set.Immutable.**forEach**
-Added in next +Added in 0.6.0
versionchanges
@@ -759,7 +759,7 @@ Parameters: #### Set.Immutable.**reduce**
-Added in next +Added in 0.6.0
versionchanges
@@ -793,7 +793,7 @@ Returns: #### Set.Immutable.**filter**
-Added in next +Added in 0.6.0
versionchanges
@@ -826,7 +826,7 @@ Returns: #### Set.Immutable.**reject**
-Added in next +Added in 0.6.0
versionchanges
@@ -859,7 +859,7 @@ Returns: #### Set.Immutable.**union**
-Added in next +Added in 0.6.0
versionchanges
@@ -892,7 +892,7 @@ Returns: #### Set.Immutable.**diff**
-Added in next +Added in 0.6.0
versionchanges
@@ -925,7 +925,7 @@ Returns: #### Set.Immutable.**intersect**
-Added in next +Added in 0.6.0
versionchanges
@@ -958,7 +958,7 @@ Returns: #### Set.Immutable.**fromList**
-Added in next +Added in 0.6.0
versionchanges
@@ -990,7 +990,7 @@ Returns: #### Set.Immutable.**toList**
-Added in next +Added in 0.6.0
versionchanges
@@ -1022,7 +1022,7 @@ Returns: #### Set.Immutable.**fromArray**
-Added in next +Added in 0.6.0
versionchanges
@@ -1054,7 +1054,7 @@ Returns: #### Set.Immutable.**toArray**
-Added in next +Added in 0.6.0
versionchanges
diff --git a/stdlib/stack.md b/stdlib/stack.md index 998e85ee3..0e5a22a65 100644 --- a/stdlib/stack.md +++ b/stdlib/stack.md @@ -36,7 +36,7 @@ Functions and constants included in the Stack module. ### Stack.**make**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -64,7 +64,7 @@ Returns: ### Stack.**isEmpty**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -89,7 +89,7 @@ Returns: ### Stack.**size**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -114,7 +114,7 @@ Returns: ### Stack.**peek**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -139,7 +139,7 @@ Returns: ### Stack.**push**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -159,7 +159,7 @@ Parameters: ### Stack.**pop**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -184,7 +184,7 @@ Returns: ### Stack.**clear**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -203,7 +203,7 @@ Parameters: ### Stack.**copy**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -248,7 +248,7 @@ Functions and constants included in the Stack.Immutable module. #### Stack.Immutable.**empty**
-Added in next +Added in 0.6.0
versionchanges
@@ -268,7 +268,7 @@ An empty stack. #### Stack.Immutable.**isEmpty**
-Added in next +Added in 0.6.0
versionchanges
@@ -300,7 +300,7 @@ Returns: #### Stack.Immutable.**peek**
-Added in next +Added in 0.6.0
versionchanges
@@ -333,7 +333,7 @@ Returns: #### Stack.Immutable.**push**
-Added in next +Added in 0.6.0
versionchanges
@@ -366,7 +366,7 @@ Returns: #### Stack.Immutable.**pop**
-Added in next +Added in 0.6.0
versionchanges
@@ -398,7 +398,7 @@ Returns: #### Stack.Immutable.**size**
-Added in next +Added in 0.6.0
versionchanges
diff --git a/stdlib/string.md b/stdlib/string.md index 064fdbcff..7cf41b6f2 100644 --- a/stdlib/string.md +++ b/stdlib/string.md @@ -140,7 +140,7 @@ String.byteLength("🌾") == 4 ### String.**isEmpty**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -451,7 +451,7 @@ String.split(" ", "Hello world") == [> "Hello", "world"] - +
versionchanges
versionchanges
nextDefault `end` to the String length
0.6.0Default `end` to the String length
@@ -706,7 +706,7 @@ String.replaceAll("🌾", "🌎", "Hello 🌾🌾") == "Hello 🌎🌎" versionchanges -nextAdded `includeBom` default argument +0.6.0Added `includeBom` default argument @@ -751,7 +751,7 @@ Throws: versionchanges -nextAdded `includeBom` default argument +0.6.0Added `includeBom` default argument @@ -785,7 +785,7 @@ Returns: versionchanges -nextAdded `keepBom` default argument +0.6.0Added `keepBom` default argument @@ -832,7 +832,7 @@ Throws: versionchanges -nextAdded `keepBom` default argument +0.6.0Added `keepBom` default argument @@ -1007,7 +1007,7 @@ String.trim(" Hello World ") == "Hello World" ### String.**toAsciiLowercase**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1038,7 +1038,7 @@ assert String.toAsciiLowercase("aBc123") == "abc123" ### String.**toAsciiUppercase**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/uint16.md b/stdlib/uint16.md index ce6f4f2c3..3009d951d 100644 --- a/stdlib/uint16.md +++ b/stdlib/uint16.md @@ -5,7 +5,7 @@ title: Uint16 Utilities for working with the Uint16 type.
-Added in next +Added in 0.6.0 No other changes yet.
@@ -20,7 +20,7 @@ Functions and constants included in the Uint16 module. ### Uint16.**fromNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -45,7 +45,7 @@ Returns: ### Uint16.**toNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -70,7 +70,7 @@ Returns: ### Uint16.**fromInt16**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -95,7 +95,7 @@ Returns: ### Uint16.**incr**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -120,7 +120,7 @@ Returns: ### Uint16.**decr**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -145,7 +145,7 @@ Returns: ### Uint16.**(+)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -171,7 +171,7 @@ Returns: ### Uint16.**(-)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -197,7 +197,7 @@ Returns: ### Uint16.**(*)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -223,7 +223,7 @@ Returns: ### Uint16.**(/)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -249,7 +249,7 @@ Returns: ### Uint16.**rem**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -275,7 +275,7 @@ Returns: ### Uint16.**(<<)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -301,7 +301,7 @@ Returns: ### Uint16.**(>>>)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -327,7 +327,7 @@ Returns: ### Uint16.**(==)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -353,7 +353,7 @@ Returns: ### Uint16.**(!=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -379,7 +379,7 @@ Returns: ### Uint16.**(<)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -405,7 +405,7 @@ Returns: ### Uint16.**(>)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -431,7 +431,7 @@ Returns: ### Uint16.**(<=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -457,7 +457,7 @@ Returns: ### Uint16.**(>=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -483,7 +483,7 @@ Returns: ### Uint16.**lnot**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -508,7 +508,7 @@ Returns: ### Uint16.**(&)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -534,7 +534,7 @@ Returns: ### Uint16.**(|)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -560,7 +560,7 @@ Returns: ### Uint16.**(^)**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/uint32.md b/stdlib/uint32.md index f8cf24fd2..24f977b43 100644 --- a/stdlib/uint32.md +++ b/stdlib/uint32.md @@ -5,7 +5,7 @@ title: Uint32 Utilities for working with the Uint32 type.
-Added in next +Added in 0.6.0 No other changes yet.
@@ -20,7 +20,7 @@ Functions and constants included in the Uint32 module. ### Uint32.**fromNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -45,7 +45,7 @@ Returns: ### Uint32.**toNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -70,7 +70,7 @@ Returns: ### Uint32.**fromInt32**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -95,7 +95,7 @@ Returns: ### Uint32.**incr**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -120,7 +120,7 @@ Returns: ### Uint32.**decr**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -145,7 +145,7 @@ Returns: ### Uint32.**(+)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -171,7 +171,7 @@ Returns: ### Uint32.**(-)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -197,7 +197,7 @@ Returns: ### Uint32.**(*)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -223,7 +223,7 @@ Returns: ### Uint32.**(/)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -249,7 +249,7 @@ Returns: ### Uint32.**rem**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -275,7 +275,7 @@ Returns: ### Uint32.**rotl**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -301,7 +301,7 @@ Returns: ### Uint32.**rotr**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -327,7 +327,7 @@ Returns: ### Uint32.**(<<)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -353,7 +353,7 @@ Returns: ### Uint32.**(>>>)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -379,7 +379,7 @@ Returns: ### Uint32.**(==)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -405,7 +405,7 @@ Returns: ### Uint32.**(!=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -431,7 +431,7 @@ Returns: ### Uint32.**eqz**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -456,7 +456,7 @@ Returns: ### Uint32.**(<)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -482,7 +482,7 @@ Returns: ### Uint32.**(>)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -508,7 +508,7 @@ Returns: ### Uint32.**(<=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -534,7 +534,7 @@ Returns: ### Uint32.**(>=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -560,7 +560,7 @@ Returns: ### Uint32.**lnot**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -585,7 +585,7 @@ Returns: ### Uint32.**(&)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -611,7 +611,7 @@ Returns: ### Uint32.**(|)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -637,7 +637,7 @@ Returns: ### Uint32.**(^)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -663,7 +663,7 @@ Returns: ### Uint32.**clz**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -688,7 +688,7 @@ Returns: ### Uint32.**ctz**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -713,7 +713,7 @@ Returns: ### Uint32.**popcnt**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/uint64.md b/stdlib/uint64.md index 145527411..5b90c8cb6 100644 --- a/stdlib/uint64.md +++ b/stdlib/uint64.md @@ -5,7 +5,7 @@ title: Uint64 Utilities for working with the Uint64 type.
-Added in next +Added in 0.6.0 No other changes yet.
@@ -20,7 +20,7 @@ Functions and constants included in the Uint64 module. ### Uint64.**fromNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -45,7 +45,7 @@ Returns: ### Uint64.**toNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -70,7 +70,7 @@ Returns: ### Uint64.**fromInt64**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -95,7 +95,7 @@ Returns: ### Uint64.**incr**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -120,7 +120,7 @@ Returns: ### Uint64.**decr**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -145,7 +145,7 @@ Returns: ### Uint64.**(+)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -171,7 +171,7 @@ Returns: ### Uint64.**(-)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -197,7 +197,7 @@ Returns: ### Uint64.**(*)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -223,7 +223,7 @@ Returns: ### Uint64.**(/)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -249,7 +249,7 @@ Returns: ### Uint64.**rem**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -275,7 +275,7 @@ Returns: ### Uint64.**rotl**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -301,7 +301,7 @@ Returns: ### Uint64.**rotr**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -327,7 +327,7 @@ Returns: ### Uint64.**(<<)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -353,7 +353,7 @@ Returns: ### Uint64.**(>>>)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -379,7 +379,7 @@ Returns: ### Uint64.**(==)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -405,7 +405,7 @@ Returns: ### Uint64.**(!=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -431,7 +431,7 @@ Returns: ### Uint64.**eqz**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -456,7 +456,7 @@ Returns: ### Uint64.**(<)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -482,7 +482,7 @@ Returns: ### Uint64.**(>)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -508,7 +508,7 @@ Returns: ### Uint64.**(<=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -534,7 +534,7 @@ Returns: ### Uint64.**(>=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -560,7 +560,7 @@ Returns: ### Uint64.**lnot**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -585,7 +585,7 @@ Returns: ### Uint64.**(&)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -611,7 +611,7 @@ Returns: ### Uint64.**(|)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -637,7 +637,7 @@ Returns: ### Uint64.**(^)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -663,7 +663,7 @@ Returns: ### Uint64.**clz**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -688,7 +688,7 @@ Returns: ### Uint64.**ctz**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -713,7 +713,7 @@ Returns: ### Uint64.**popcnt**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/uint8.md b/stdlib/uint8.md index c78ece8e9..16e969bc1 100644 --- a/stdlib/uint8.md +++ b/stdlib/uint8.md @@ -5,7 +5,7 @@ title: Uint8 Utilities for working with the Uint8 type.
-Added in next +Added in 0.6.0 No other changes yet.
@@ -20,7 +20,7 @@ Functions and constants included in the Uint8 module. ### Uint8.**fromNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -45,7 +45,7 @@ Returns: ### Uint8.**toNumber**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -70,7 +70,7 @@ Returns: ### Uint8.**fromInt8**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -95,7 +95,7 @@ Returns: ### Uint8.**incr**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -120,7 +120,7 @@ Returns: ### Uint8.**decr**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -145,7 +145,7 @@ Returns: ### Uint8.**(+)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -171,7 +171,7 @@ Returns: ### Uint8.**(-)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -197,7 +197,7 @@ Returns: ### Uint8.**(*)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -223,7 +223,7 @@ Returns: ### Uint8.**(/)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -249,7 +249,7 @@ Returns: ### Uint8.**rem**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -275,7 +275,7 @@ Returns: ### Uint8.**(<<)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -301,7 +301,7 @@ Returns: ### Uint8.**(>>>)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -327,7 +327,7 @@ Returns: ### Uint8.**(==)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -353,7 +353,7 @@ Returns: ### Uint8.**(!=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -379,7 +379,7 @@ Returns: ### Uint8.**(<)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -405,7 +405,7 @@ Returns: ### Uint8.**(>)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -431,7 +431,7 @@ Returns: ### Uint8.**(<=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -457,7 +457,7 @@ Returns: ### Uint8.**(>=)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -483,7 +483,7 @@ Returns: ### Uint8.**lnot**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -508,7 +508,7 @@ Returns: ### Uint8.**(&)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -534,7 +534,7 @@ Returns: ### Uint8.**(|)**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -560,7 +560,7 @@ Returns: ### Uint8.**(^)**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/uri.md b/stdlib/uri.md index 5c69ace9d..2ae74a577 100644 --- a/stdlib/uri.md +++ b/stdlib/uri.md @@ -5,7 +5,7 @@ title: Uri Utilities for working with URIs.
-Added in next +Added in 0.6.0 No other changes yet.
@@ -104,7 +104,7 @@ Functions and constants included in the Uri module. ### Uri.**encode**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -144,7 +144,7 @@ Uri.encode("word", encodeSet=Uri.EncodeCustom(c => c == 'o')) // "w%6Frd" ### Uri.**decode**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -169,7 +169,7 @@ Returns: ### Uri.**encodeQuery**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -195,7 +195,7 @@ Returns: ### Uri.**decodeQuery**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -220,7 +220,7 @@ Returns: ### Uri.**parse**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -257,7 +257,7 @@ Uri.parse("http://@*^%") == Err(Uri.ParseError) ### Uri.**resolveReference**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -298,7 +298,7 @@ resolveReference(unwrap(parse("https://grain-lang.org/docs")), unwrap(parse("goo ### Uri.**make**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -346,7 +346,7 @@ Uri.make(port=Some(80)) // Err(Uri.PortWithNoHost) ### Uri.**update**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -403,7 +403,7 @@ Uri.update(uri, host=Some(None), port=Some(Some(80))) // Err(Uri.PortWithNoHost) ### Uri.**hasAuthority**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -428,7 +428,7 @@ Returns: ### Uri.**isAbsolute**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -453,7 +453,7 @@ Returns: ### Uri.**toString**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/wasi/file.md b/stdlib/wasi/file.md index 6180ce524..398cc9ae2 100644 --- a/stdlib/wasi/file.md +++ b/stdlib/wasi/file.md @@ -609,7 +609,7 @@ Returns: ### File.**fdPrestatGet**
-Added in next +Added in 0.6.0 No other changes yet.
@@ -1326,7 +1326,7 @@ Returns: ### File.**open**
-Added in next +Added in 0.6.0 No other changes yet.
diff --git a/stdlib/wasi/random.md b/stdlib/wasi/random.md index c7e91e4bc..4c6dbd19a 100644 --- a/stdlib/wasi/random.md +++ b/stdlib/wasi/random.md @@ -15,7 +15,7 @@ Functions and constants included in the Random module. ### Random.**randomUint32**
-Added in next +Added in 0.6.0 @@ -41,7 +41,7 @@ Returns: ### Random.**randomUint64**
-Added in next +Added in 0.6.0
versionchanges
versionchanges