Deploy to GitHub Pages:

This commit is contained in:
Travis CI
2021-02-19 03:37:02 +00:00
parent 30ea6fa8b4
commit 301a5cf3c7

View File

@ -268,6 +268,9 @@ System.print("ᵔᴥᵔᴥᵔbearᵔᴥᴥᵔᵔ".trimStart("ᵔᴥ")) //> bear
<h3><strong>+</strong>(other) operator <a href="#+(other)-operator" name="+(other)-operator" class="header-anchor">#</a></h3>
<p>Returns a new string that concatenates this string and <code>other</code>.</p>
<p>It is a runtime error if <code>other</code> is not a string.</p>
<h3><strong>*</strong>(count) operator <a href="#(count)-operator" name="(count)-operator" class="header-anchor">#</a></h3>
<p>Returns a new string that contains this string repeated <code>count</code> times.</p>
<p>It is a runtime error if <code>count</code> is not a positive integer.</p>
<h3><strong>==</strong>(other) operator <a href="#==(other)-operator" name="==(other)-operator" class="header-anchor">#</a></h3>
<p>Checks if the string is equal to <code>other</code>.</p>
<h3><strong>!=</strong>(other) operator <a href="#=(other)-operator" name="=(other)-operator" class="header-anchor">#</a></h3>