From cacda19e75f878e4274574eed01829f92ede7b72 Mon Sep 17 00:00:00 2001 From: Stephen Dolan Date: Mon, 6 May 2013 02:34:02 +0100 Subject: [PATCH] Add documentation for "type". Closes #75. --- docs/content/3.manual/manual.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/content/3.manual/manual.yml b/docs/content/3.manual/manual.yml index 166a385a..374d5046 100644 --- a/docs/content/3.manual/manual.yml +++ b/docs/content/3.manual/manual.yml @@ -537,6 +537,18 @@ sections: input: '[1, "1", [1]]' output: ['"1"', '"1"', '"[1]"'] + - title: `type` + body: | + + The `type` function returns the type of its argument as a + string, which is one of null, boolean, number, string, array + or object. + + examples: + - program: 'map(type)' + input: '[0, false, [], {}, null, "hello"]' + output: ['["number", "boolean", "array", "object", "null", "string"]'] + - title: `sort, sort_by` body: |