diff --git a/docs/content/manual/manual.yml b/docs/content/manual/manual.yml index 431ebcbc09..454c05cef5 100644 --- a/docs/content/manual/manual.yml +++ b/docs/content/manual/manual.yml @@ -814,16 +814,20 @@ sections: codepoints it contains (which will be the same as its JSON-encoded length in bytes if it's pure ASCII). + - The length of a **number** is its absolute value. + - The length of an **array** is the number of elements. - The length of an **object** is the number of key-value pairs. - The length of **null** is zero. + - It is an error to use `length` on a **boolean**. + examples: - program: '.[] | length' - input: '[[1,2], "string", {"a":2}, null]' - output: [2, 6, 1, 0] + input: '[[1,2], "string", {"a":2}, null, -5]' + output: [2, 6, 1, 0, 5] - title: "`utf8bytelength`" diff --git a/docs/content/manual/v1.6/manual.yml b/docs/content/manual/v1.6/manual.yml index 58de6e915d..4e75bf5d13 100644 --- a/docs/content/manual/v1.6/manual.yml +++ b/docs/content/manual/v1.6/manual.yml @@ -736,16 +736,20 @@ sections: codepoints it contains (which will be the same as its JSON-encoded length in bytes if it's pure ASCII). + - The length of a **number** is its absolute value. + - The length of an **array** is the number of elements. - The length of an **object** is the number of key-value pairs. - The length of **null** is zero. + - It is an error to use `length` on a **boolean**. + examples: - program: '.[] | length' - input: '[[1,2], "string", {"a":2}, null]' - output: [2, 6, 1, 0] + input: '[[1,2], "string", {"a":2}, null, -5]' + output: [2, 6, 1, 0, 5] - title: "`utf8bytelength`"