From: Nicolas Williams Date: Wed, 19 Jun 2013 06:12:11 +0000 (-0500) Subject: Document floor X-Git-Tag: jq-1.4~92 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3dcdc582ea993afea3f5503a78a77675967ecdfa;p=jq Document floor --- diff --git a/docs/content/3.manual/manual.yml b/docs/content/3.manual/manual.yml index daf3bd9..ea78dff 100644 --- a/docs/content/3.manual/manual.yml +++ b/docs/content/3.manual/manual.yml @@ -623,6 +623,16 @@ sections: input: 'null' output: ['[2,3]'] + - title: `floor` + body: | + + The `floor` function returns the floor of its numeric input. + + examples: + - program: '.[] | tonumber' + input: '[1, "1"]' + output: [1, 1] + - title: `tonumber` body: |