From ce4cbaabad1cf63fc49b551f2394e79833415e7e Mon Sep 17 00:00:00 2001 From: uchitsa Date: Thu, 9 Jan 2025 00:46:12 +0300 Subject: [PATCH 01/13] fix quality warnings --- eo-runtime/src/main/eo/org/eolang/tuple.eo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo-runtime/src/main/eo/org/eolang/tuple.eo b/eo-runtime/src/main/eo/org/eolang/tuple.eo index cd6ef710a6..a86770999d 100644 --- a/eo-runtime/src/main/eo/org/eolang/tuple.eo +++ b/eo-runtime/src/main/eo/org/eolang/tuple.eo @@ -37,7 +37,7 @@ # Create a new tuple with this element added to the end of it. tuple ^ x > [x] > with - # Obtain the length of the tuple. + # Obtain the length value of the tuple. [] > length head.length.plus 1 > len! number len > @ From 18a3f8601a737193e315a04b93b316df0faebbad Mon Sep 17 00:00:00 2001 From: uchitsa Date: Thu, 9 Jan 2025 00:54:53 +0300 Subject: [PATCH 02/13] fix quality warnings --- eo-runtime/src/main/eo/org/eolang/tuple.eo | 1 + 1 file changed, 1 insertion(+) diff --git a/eo-runtime/src/main/eo/org/eolang/tuple.eo b/eo-runtime/src/main/eo/org/eolang/tuple.eo index a86770999d..4b2802e62a 100644 --- a/eo-runtime/src/main/eo/org/eolang/tuple.eo +++ b/eo-runtime/src/main/eo/org/eolang/tuple.eo @@ -26,6 +26,7 @@ +version 0.0.0 # Tuple. +# An ordered, immutable collection of elements. [head tail] > tuple # Empty tuple. [] > empty From 1ea2e0b60e4eb5813ce420921cf23d48ec2e1014 Mon Sep 17 00:00:00 2001 From: uchitsa Date: Thu, 9 Jan 2025 01:05:48 +0300 Subject: [PATCH 03/13] fix quality warnings --- eo-runtime/src/main/eo/org/eolang/tuple.eo | 1 + 1 file changed, 1 insertion(+) diff --git a/eo-runtime/src/main/eo/org/eolang/tuple.eo b/eo-runtime/src/main/eo/org/eolang/tuple.eo index 4b2802e62a..85317f3575 100644 --- a/eo-runtime/src/main/eo/org/eolang/tuple.eo +++ b/eo-runtime/src/main/eo/org/eolang/tuple.eo @@ -29,6 +29,7 @@ # An ordered, immutable collection of elements. [head tail] > tuple # Empty tuple. + # A tuple with no elements. When dataized, it represents an immutable, empty collection. [] > empty 0 > length From 23fa010f7d35a61841282aa7c18c687bb3067930 Mon Sep 17 00:00:00 2001 From: uchitsa Date: Thu, 9 Jan 2025 01:05:55 +0300 Subject: [PATCH 04/13] fix quality warnings --- eo-runtime/src/main/eo/org/eolang/positive-infinity.eo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo b/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo index 200aaf9a6b..a89e52b108 100644 --- a/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo +++ b/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo @@ -85,7 +85,7 @@ nan ^ - # Difference between $ and x. + # Difference between the values of $ and x. [x] > minus x > value! if. > @ From 09c128a2559e7137547e96277b81f9c6add684d6 Mon Sep 17 00:00:00 2001 From: uchitsa Date: Thu, 9 Jan 2025 18:36:46 +0300 Subject: [PATCH 05/13] fix quality warnings --- eo-runtime/src/main/eo/org/eolang/positive-infinity.eo | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo b/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo index a89e52b108..45339108f0 100644 --- a/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo +++ b/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo @@ -26,6 +26,8 @@ +version 0.0.0 # Positive infinity. +# A special floating-point value representing an unbounded quantity greater than all real numbers. +# When dataized, it signifies an unbounded upper limit or an unreachable maximum value. [] > positive-infinity number 7F-F0-00-00-00-00-00-00 > @ $ > floor From cffa9225e41c8389c85f0bb8f1d3937b2563294d Mon Sep 17 00:00:00 2001 From: uchitsa Date: Thu, 9 Jan 2025 18:37:04 +0300 Subject: [PATCH 06/13] fix quality warnings --- eo-runtime/src/main/eo/org/eolang/positive-infinity.eo | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo b/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo index 45339108f0..5fcefa4342 100644 --- a/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo +++ b/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo @@ -37,19 +37,19 @@ false > is-integer error "Can't convert positive infinity to i64" > as-i64 - # Tests that $ = x. + # Tests that the value $ is equal to x. [x] > eq eq. > @ ^.as-bytes x.as-bytes - # Tests that $ < x. + # Tests that the value $ less than x. false > [x] > lt - # Tests that $ <= x. + # Tests that the value $ less or equal than x. ^.eq x > [x] > lte - # Tests that $ > x. + # Tests that the value $ greater than x. [x] > gt x > value! not. > @ From 6ed1fd24b336d79dd77d506ccfb8fbe20c9eed8e Mon Sep 17 00:00:00 2001 From: uchitsa Date: Thu, 9 Jan 2025 18:47:07 +0300 Subject: [PATCH 07/13] fix quality warnings --- eo-runtime/src/main/eo/org/eolang/positive-infinity.eo | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo b/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo index 5fcefa4342..5ccd4149a8 100644 --- a/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo +++ b/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo @@ -57,13 +57,13 @@ (number value).is-nan ^.eq value - # Tests that $ >= x. + # Tests that the value $ greater or equal than x. [x] > gte x > value! not. > @ (number value).is-nan - # Multiplication of $ and x. + # Returns the result of the multiplication of $ and x. [x] > times x > value! number value > num @@ -77,7 +77,7 @@ ^ negative-infinity - # Sum of $ and x. + # Returns the result of the sum of $ and x. [x] > plus x > value! if. > @ From f6999266552497b88310a68cbdfa6089d878dbed Mon Sep 17 00:00:00 2001 From: uchitsa Date: Thu, 9 Jan 2025 19:20:55 +0300 Subject: [PATCH 08/13] fix quality warnings --- eo-runtime/src/main/eo/org/eolang/math/e.eo | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eo-runtime/src/main/eo/org/eolang/math/e.eo b/eo-runtime/src/main/eo/org/eolang/math/e.eo index dc90e0690f..3e547e9869 100644 --- a/eo-runtime/src/main/eo/org/eolang/math/e.eo +++ b/eo-runtime/src/main/eo/org/eolang/math/e.eo @@ -26,4 +26,6 @@ +version 0.0.0 # The Euler's number. +# A fundamental mathematical constant approximately equal to 2.7182818284590452354. +# When dataized, it represents the base of natural logarithms. 2.7182818284590452354 > e From 88af3a62ee35ae12865c773b3f140b9a56850856 Mon Sep 17 00:00:00 2001 From: uchitsa Date: Fri, 10 Jan 2025 03:08:28 +0300 Subject: [PATCH 09/13] fix quality warnings --- eo-runtime/src/main/eo/org/eolang/txt/text.eo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eo-runtime/src/main/eo/org/eolang/txt/text.eo b/eo-runtime/src/main/eo/org/eolang/txt/text.eo index cd11c0652a..d1d9607771 100644 --- a/eo-runtime/src/main/eo/org/eolang/txt/text.eo +++ b/eo-runtime/src/main/eo/org/eolang/txt/text.eo @@ -241,7 +241,7 @@ ^.rec-index-of-substr idx.plus -1 - # Returns `text` in upper case. + # Returns the `text` in upper case. [] > up-cased ascii "z" > ascii-z! ascii "a" > ascii-a! @@ -277,7 +277,7 @@ 00-00-00-00-00-00-00 char.as-bytes - # Returns `text` in lower case. + # Returns the `text` in lower case. [] > low-cased ^.up-cased.ascii "Z" > ascii-z ^.up-cased.ascii "A" > ascii-a From 03a9c46208eb4b668e12b15bbbc92b0f4ac01f81 Mon Sep 17 00:00:00 2001 From: uchitsa Date: Fri, 10 Jan 2025 03:10:07 +0300 Subject: [PATCH 10/13] fix quality warnings --- eo-runtime/src/main/eo/org/eolang/negative-infinity.eo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo b/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo index 0978f26f62..209d5adb02 100644 --- a/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo +++ b/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo @@ -75,7 +75,7 @@ ^ positive-infinity - # Sum of $ and x. + # Returns the result of the sum of $ and x. [x] > plus x > value! if. > @ @@ -85,7 +85,7 @@ nan ^ - # Difference between $ and x. + # Difference between the values of $ and x. [x] > minus x > value! if. > @ From 0ed89848579bb5fa23fa8816ffba9e4adcf07a21 Mon Sep 17 00:00:00 2001 From: uchitsa Date: Fri, 10 Jan 2025 12:40:39 +0300 Subject: [PATCH 11/13] fix quality warnings --- eo-runtime/src/main/eo/org/eolang/negative-infinity.eo | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo b/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo index 209d5adb02..94a7979072 100644 --- a/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo +++ b/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo @@ -26,6 +26,8 @@ +version 0.0.0 # Negative infinity. +# A special floating-point value representing an unbounded quantity less than all real numbers. +# When dataized, it signifies an unbounded lower limit or an unreachable maximum value. [] > negative-infinity number FF-F0-00-00-00-00-00-00 > @ $ > floor From c70e47cd19d661b544ca1cc7f35751375f4aa5ec Mon Sep 17 00:00:00 2001 From: uchitsa Date: Fri, 10 Jan 2025 17:08:02 +0300 Subject: [PATCH 12/13] fix quality warnings --- .../src/main/eo/org/eolang/negative-infinity.eo | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo b/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo index 94a7979072..e09b675e95 100644 --- a/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo +++ b/eo-runtime/src/main/eo/org/eolang/negative-infinity.eo @@ -37,13 +37,13 @@ false > is-integer error "Can't convert negative infinity to i64" > as-i64 - # Tests that $ = x. + # Tests that the value $ is equal to x. [x] > eq eq. > @ ^.as-bytes x.as-bytes - # Tests that $ < x. + # Tests that the value $ less than x. [x] > lt x > value! not. > @ @@ -51,19 +51,19 @@ (number value).is-nan ^.eq value - # Tests that $ <= x. + # Tests that the value $ less or equal than x. [x] > lte x > value! not. > @ (number value).is-nan - # Tests that $ > x. + # Tests that the value $ greater than x. false > [x] > gt - # Tests that $ >= x. + # Tests that the value $ greater or equal than x. ^.eq x > [x] > gte - # Multiplication of $ and x. + # Returns the result of the multiplication of $ and x. [x] > times x > value! number value > num From 8b3bd20adbcc4e5350f1f03f8ceb659bc44a230e Mon Sep 17 00:00:00 2001 From: uchitsa Date: Fri, 10 Jan 2025 18:39:44 +0300 Subject: [PATCH 13/13] fix typo --- eo-runtime/src/main/eo/org/eolang/positive-infinity.eo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo b/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo index 5ccd4149a8..ceec97a5d9 100644 --- a/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo +++ b/eo-runtime/src/main/eo/org/eolang/positive-infinity.eo @@ -87,7 +87,7 @@ nan ^ - # Difference between the values of $ and x. + # Difference between the values of $ and x. [x] > minus x > value! if. > @