Skip to content

Commit 3c12ca0

Browse files
authored
Merge pull request #776 from jeremydouglass/revert-unbinary
Revert "Add unbinary int signature"
2 parents d24e06d + 284093c commit 3c12ca0

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

content/api_en/unbinary.xml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,11 @@ String s3 = "00000100";
1717
println(unbinary(s1)); // Prints "16"
1818
println(unbinary(s2)); // Prints "8"
1919
println(unbinary(s3)); // Prints "4"
20-
21-
int i1 = 10000;
22-
int i2 = 1000;
23-
int i3 = 100
24-
println(unbinary(i1)); // Prints "16"
25-
println(unbinary(i2)); // Prints "8"
26-
println(unbinary(i3)); // Prints "4"
2720
]]></code>
2821
</example>
2922

3023
<description><![CDATA[
3124
Converts a <b>String</b> representation of a binary number to its equivalent integer value. For example, <b>unbinary("00001000")</b> will return <b>8</b>.
32-
33-
Alternately, converts an <b>int</b> representation of a binary number to its equivalent integer value. For example, <b>unbinary(1000)</b> will return <b>8</b>.
3425
]]></description>
3526

3627
</root>

0 commit comments

Comments
 (0)