Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewmchen committed Jul 5, 2016
1 parent 9f54d58 commit 4bd01cd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions doc/docs/stdlib.html
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,13 @@ <h4>std.format(str, vals)</h4>
<p>Example: <code>"Hello %(name)s, age %(age)d" % {age: 25, name: "Foo"}</code> yields
<code>"Hello Foo, age 25"</code>. </p>

<h4>std.parseInt(str)</h4>

<p>Parses a signed decimal integer from the input string</p>

<p>Example: <code>std.parseInt("123")</code> yields <code>123</code>.</p>

<p>Example: <code>std.parseInt("-123")</code> yields <code>-123</code>.</p>

<h4>std.escapeStringBash(str)</h4>

Expand Down

0 comments on commit 4bd01cd

Please sign in to comment.